#python #pythontutorial #pythoncourse
# Variable = A container for a value (string, integer, float, boolean)
# A variable behaves as if it was the value it contains
# Strings
first_name = "Bro"
food = "pizza"
email = "Bro123@fake.com"
# Integers
age = 25
quantity = 3
num_of_students = 30
# Float
price = 10.99
gpa = 3.2
distance = 5.5
# Boolean
is_student = True
for_sale = False
is_online = True
print(f"Hello {first_name}")
print(f"You are {age} years old")
print(f"Your gpa is: {gpa}")
if is_student:
print("You are a student")
else:
print("You are NOT student")
# Variable = A container for a value (string, integer, float, boolean)
# A variable behaves as if it was the value it contains
# Strings
first_name = "Bro"
food = "pizza"
email = "Bro123@fake.com"
# Integers
age = 25
quantity = 3
num_of_students = 30
# Float
price = 10.99
gpa = 3.2
distance = 5.5
# Boolean
is_student = True
for_sale = False
is_online = True
print(f"Hello {first_name}")
print(f"You are {age} years old")
print(f"Your gpa is: {gpa}")
if is_student:
print("You are a student")
else:
print("You are NOT student")
- Category
- Bro Code
- Tags
- Python tutorial, python course, python programming

Be the first to comment