Python Programming Immersion
Week 1: Assignment
1. message = ["I", "like","python"]
Change ‘like’ to ‘love’ and print message to show
["I", "love", "python"]
2. Create 2 variables, one for storing your name and the other
for storing your salary. Assuming your salary is 5000.12345 USD
print it out eg. My name is wale. I earn 500.12
3. words = "I am here" print out the words to read "here am I"
4 Bring out python from the info below
info = {'k1':[1,2,{'k2':['this is tricky',{'tough':[1,2,['python']]}]}]}
5. What are some of the rules for naming variables in python?