Write the corresponding python assignment statements:
a) Assign a list containg strings 'paper', 'Gel pen and 'Eraser' to a variable stationary
b) Assign the strings 'Mohandas', 'Karamchand' and 'Gandhi' to variables first, middle and last
Answers
Answered by
3
stationary = ["paper", "Gel pen", "Eraser"]
first, middle, last = "Mohandas", "Karamchand", "Gandhi"
Similar questions