mirror of
https://github.com/codeninjasuk/python-camp-24.git
synced 2024-11-22 07:18:03 -05:00
17 lines
268 B
Python
17 lines
268 B
Python
# Activity 1
|
|
|
|
# Integer
|
|
counter = 15
|
|
print("Counter:",counter)
|
|
# Float
|
|
discount = 1.5
|
|
print("Discount:",)
|
|
# String
|
|
name = "Mr Beast"
|
|
print("Name:",)
|
|
# Boolean
|
|
sunnyDay = False
|
|
print("Is it Sunny:",)
|
|
# List
|
|
shopping = ["Banana","Eggs","Bread"]
|
|
print("Shopping List:",)
|