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