user input for char in python 3 code example
Example 1: input python 3
answer = input("What is your name? ")
print(f"Your name is {answer}")
Example 2: why wont my python input accept string inputs
username = raw_input("Type you username: ")
print("Welcome " + username)