Files
ict-algemeen-opdrachten/Python/omgedraaide string/string.py

6 lines
98 B
Python

import time
input_string = input("Voer een string in: ")
print(input_string[::-1])
time.sleep(2)