4.5. Input - JulTob/Python GitHub Wiki

Will read as a string.

input()
input("Write something: ")

name = sys.stdin.readline()
print('Hello ', name)

name = input("What's your name? ")

number = int(input("Enter a number: "))

print("Hello ", input("What's your name? "))

selection = input("You wanna continue? Y/y")
selection.lower()
if selection == "y" or selection == "Y":
   print("ok")