Variables en Python
Simple terms: a variable is a box that you can put stuff in it such as
strings int booleans
Encouraging Elk
Simple terms: a variable is a box that you can put stuff in it such as
strings int booleans
name=input('What is your name')
email=input('what is your email')
print(f"Hi {name}! We will be contacting you shortly at {email}")
variable1 = "Hello"
variable2 = 13
variable3 = False
variable_name = "Hello World"
one_number = 1
variable_name = variable_value #String, integer, float, boolean, ...
variable_username = "Hello"