input after if not working python code example
Example 1: why wont my python input accept string inputs
username = raw_input("Type you username: ")
print("Welcome " + username)
Example 2: why wont my phython program get any user input
username= input("Enter your username: ")
print ("Hello there " + username)