python-camp-24/activity1.py

18 lines
268 B
Python
Raw Permalink 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:20:28 -04:00
print("Discount:",)
2024-05-28 16:11:36 -04:00
# String
name = "Mr Beast"
2024-05-28 16:20:28 -04:00
print("Name:",)
2024-05-28 16:11:36 -04:00
# Boolean
sunnyDay = False
2024-05-28 16:20:28 -04:00
print("Is it Sunny:",)
2024-05-28 16:11:36 -04:00
# List
shopping = ["Banana","Eggs","Bread"]
2024-05-28 16:20:28 -04:00
print("Shopping List:",)