python-camp-24/activity1.py

18 lines
296 B
Python
Raw Normal View History

2024-05-28 16:11:36 -04:00
# Activity 1
# Integer
counter = 15
2024-05-28 16:13:07 -04:00
print("Counter:",counter)
2024-05-28 16:11:36 -04:00
# Float
discount = 1.5
2024-05-28 16:13:07 -04:00
print("Discount:",counter)
2024-05-28 16:11:36 -04:00
# String
name = "Mr Beast"
2024-05-28 16:13:07 -04:00
print("Name:",counter)
2024-05-28 16:11:36 -04:00
# Boolean
sunnyDay = False
2024-05-28 16:13:07 -04:00
print("Is it Sunny:",counter)
2024-05-28 16:11:36 -04:00
# List
shopping = ["Banana","Eggs","Bread"]
2024-05-28 16:13:07 -04:00
print("Shopping List:",counter)