Samuel Vermeulen 9 months ago
parent
commit
251be35b3d
  1. 9
      Fonctions/dentelle.py

9
Fonctions/dentelle.py

@ -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)
Loading…
Cancel
Save