4 lines
88 B
Python
4 lines
88 B
Python
# Very basic input example
|
|
name = input("What is your name? ")
|
|
print(f"Hello, {name}!")
|