Update activity1.py

This commit is contained in:
Elvis Tony 2024-05-28 21:13:07 +01:00 committed by GitHub
parent bf567209a3
commit c8379bda0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)