Q(a)
Shoppinglist =['cake cashew gum']
shoppinglist.upper()
Q(b)fruit=['cake','cashew','gum']
fruit[1] ='Gum'
fruit[2] = 'cashew'
print fruit
['cake', 'Gum', 'cashew']
Q2
people=['Hassan', 'Adama', 'Bishir', 'saleh', 'Clement']
ages=[10, 15, 16, 17, 95]
iT='Hello',people[0],'is',ages[0],'years old'
('Hello', 'Hassan', 'is', 10, 'years old')
Q(a)
Shoppinglist =['cake cashew gum']
shoppinglist.upper()
Q(b)fruit=['cake','cashew','gum']
fruit[1] ='Gum'
fruit[2] = 'cashew'
print fruit
['cake', 'Gum', 'cashew']
Q2
people=['Hassan', 'Adama', 'Bishir', 'saleh', 'Clement']
ages=[10, 15, 16, 17, 95]
iT='Hello',people[0],'is',ages[0],'years old'
('Hello', 'Hassan', 'is', 10, 'years old')