learned all types of variables and integrated them into my code

This commit is contained in:
2025-10-23 09:59:04 -05:00
parent 97f7fafcf2
commit 0f8813e69a

56
main.py
View File

@@ -2,6 +2,62 @@
first_name = "bread"
last_name = "milc"
favorite_food = "67 shaped pizza"
email = "bread@123fake.com"
print(f"hello {first_name}")
print(f"I like {favorite_food}")
print("It's really good!")
print(f"my email is: {email}")
# integers
age = 67
quantity = 3
num_of_students = 30
print(f"I am {age} years old")
print(f"I am buying {quantity} items")
print(f"theres a school bus of {num_of_students} kids!")
# float
price = 10.99
gpa = 6.7
distance = 5.5
print(f"The price of this dubai chocolate is ${price}")
print(f"My gpa is: {gpa}")
print(f"Leonardo ran {distance} miles")
# boolean
is_student = False
for_sale = True
is_online = True
if is_student:
print("You are a student, Leonardo!")
else:
print(f"You are NOT a student, Leonardo.")
if for_sale:
print("That item is for sale")
else:
print("That item isnt for sale")
if is_online:
print("breadmilc is online")
else:
print("breadmilc is offline")