find the error if any in the following code x=[20, 30,'a', [7], 90,3] Y=23+ X[3] print(y)
Answers
Answered by
1
the literals are different
u are trying to add 23 with a lost literal
first convert both to integer or float.
Similar questions