mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 11:06:59 +01:00
6 lines
98 B
Python
6 lines
98 B
Python
import time
|
|
|
|
input_string = input("Voer een string in: ")
|
|
|
|
print(input_string[::-1])
|
|
time.sleep(2) |