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
array = [1, 2, 3, 4]
array.append(5)
for i in array:
print(i)
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
x = "Jack"
y = 110
print(x)
print(y)
name="John"
print("Hello "+name)