input python format prompt code example
Example 1: why wont my python input accept string inputs
username = raw_input("Type you username: ")
print("Welcome " + username)
Example 2: how to print the 3erd character of an input in python
exampleString = "This is an example sentence"
print(exampleString[2])