9 lines
205 B
Python
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) |