- Define a string:
name = 'hello world'
(Remember the quotes) - Define a number:
age = 10
- Define a boolean (True/False):
likesMovies = True
(Remember to capitalize "True" and "False")
print
: Prints something to the terminal. Format:print(value)
input
: Asks the user for their input. Format:input(question)
(Remember to put a space after the questions)