Solved

Case Study 2: ≫>> ChangeList = [1, 2, "Buckle My Shoe", 3, 4

Question 21

Multiple Choice

Case Study 2:
>>> changeList = [1, 2, "buckle my shoe", 3, 4,
"shut the door"]
2. >>> changeList
3. [1, 2, 'buckle my shoe', 3, 4, 'shut the door']
4. >>> changeList[2] = "the sky is blue"
5. >>> changeList
6. ??????
7. >>> name = "Monte"
8. >>> name[2] = "x"
9. ??????
-Refer to the session in the accompanying Case Study 2. What will be the output on line 6?


A) 'the sky is blue'
B) [1, 'the sky is blue', "buckle my shoe", 3, 4, 'shut the door']
C) [1, 2, 'the sky is blue', 3, 4, 'shut the door']
D) TypeError:object does not support item assignment

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions