This commit is contained in:
Samuel Vermeulen 2023-01-03 22:40:38 +01:00
parent 4226e929a1
commit e5b18b3d9d

5
ecriture_en_miroir.py Normal file
View File

@ -0,0 +1,5 @@
nbLignes = int(input())
for idLigne in range(nbLignes):
texte = input()
print(texte[::-1])