Created
March 29, 2018 06:10
-
-
Save shabbirbhimani/b86a041d1314e41dca1115254784af36 to your computer and use it in GitHub Desktop.
4.4 Declaring Lists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Declaring Lists of office items as strings | |
officeItems = ['pens', 'sticky notes', 'white board'] | |
# declaring prime no till 10 | |
primeNumber = [2,3,5,7] | |
print('Office item list is', officeItems) | |
print('Prime number upto 10 list is', primeNumber) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment