The command-line interface will ask for input from our keyboard, and then:
print()
print("Hello World")
\n
: print("Hello\nWorld")
print("x has the value:", x, "\nand y has the value:", y)
input()
input()
“turns” into the text entered, and is ALWAYS an object the type string
!x = input()
x = "Hi"
What happened???
int()
and float()