Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shabbirbhimani/b86a041d1314e41dca1115254784af36 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/b86a041d1314e41dca1115254784af36 to your computer and use it in GitHub Desktop.
4.4 Declaring Lists
# 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