mirror of
https://github.com/codeninjasuk/python-camp-24.git
synced 2024-11-22 15:28:13 -05:00
12 lines
158 B
Python
12 lines
158 B
Python
# Activity 1
|
|
|
|
# Integer
|
|
counter = 15
|
|
# Float
|
|
discount = 1.5
|
|
# String
|
|
name = "Mr Beast"
|
|
# Boolean
|
|
sunnyDay = False
|
|
# List
|
|
shopping = ["Banana","Eggs","Bread"]
|