+ 3
What will be the output,Plz explain
Arr = [4,3,2][1]
5 Answers
+ 20
It will give output 3.
Because in this list 3 is the value at 1 index of this list
+ 3
Its mean data stored at index 1 hence output will be 3
+ 1
niranjan 3
+ 1
3 bcz the 1 here is the index number which defines the second item that is 3
0
List syntax:
l=[list items ][index of the element you want starting from zero index]âââ quite different from "c"đśđś