python/Fonctions/dentelle.py
2023-01-05 16:32:49 +01:00

9 lines
205 B
Python

def dentelle(caractere,longueur):
for loop in range(longueur):
print(caractere, end="")
print()
longueur = int(input())
dentelle("X",longueur)
dentelle("#",longueur)
dentelle("i",longueur)