mirror of
https://github.com/codeninjasuk/python-camp-24.git
synced 2024-11-22 15:28:13 -05:00
Update activity1.py
This commit is contained in:
parent
bf567209a3
commit
c8379bda0b
1 changed files with 5 additions and 0 deletions
|
@ -2,11 +2,16 @@
|
||||||
|
|
||||||
# Integer
|
# Integer
|
||||||
counter = 15
|
counter = 15
|
||||||
|
print("Counter:",counter)
|
||||||
# Float
|
# Float
|
||||||
discount = 1.5
|
discount = 1.5
|
||||||
|
print("Discount:",counter)
|
||||||
# String
|
# String
|
||||||
name = "Mr Beast"
|
name = "Mr Beast"
|
||||||
|
print("Name:",counter)
|
||||||
# Boolean
|
# Boolean
|
||||||
sunnyDay = False
|
sunnyDay = False
|
||||||
|
print("Is it Sunny:",counter)
|
||||||
# List
|
# List
|
||||||
shopping = ["Banana","Eggs","Bread"]
|
shopping = ["Banana","Eggs","Bread"]
|
||||||
|
print("Shopping List:",counter)
|
||||||
|
|
Loading…
Reference in a new issue