0
What is the output of...
li = [âabcâ, 23, 4.34, 23] li[1] = 45 li
5 Answers
+ 2
You can run it and see.
It replaces the value of li[1] ==23 with 45
New list ["abc",45,4.34,23]
+ 1
Should be print(li) not li
+ 1
there is an error in your program,at last line u have to mention print command
you get this answer
['abc', 45, 4.34, 23]
0
when i run it...it shows no output...



