Saturday, July 2, 2022

Python - User input

# User input for a string
username = input("Enter username:")

print("Hello, " + username)

      
# Note that this only gets a string.

# It does not scan for key presses