mirror of
https://github.com/Alvin-Zilverstand/ict-algemeen-opdrachten.git
synced 2026-03-06 11:06:59 +01:00
7 lines
192 B
Python
7 lines
192 B
Python
import time
|
|
|
|
# Vraag de gebruiker om een string in te voeren
|
|
input_string = input("Voer een string in: ")
|
|
# Print de omgekeerde string
|
|
print(input_string[::-1]) # Output: "zeeD"
|
|
time.sleep(2) |