code: x=[10,20,30,40,50] y=20 if(y in x): print(x.index(y)) else: print(-1)
Please help me with the below 2 Questions