mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-04-17 14:47:56 +02: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) |