This commit is contained in:
Samuel Vermeulen 2023-01-05 16:32:49 +01:00
parent 53a0eea46c
commit 251be35b3d

9
Fonctions/dentelle.py Normal file
View File

@ -0,0 +1,9 @@
def dentelle(caractere,longueur):
for loop in range(longueur):
print(caractere, end="")
print()
longueur = int(input())
dentelle("X",longueur)
dentelle("#",longueur)
dentelle("i",longueur)