+ 1
Odd = [1,3,5] print((odd+[2,4,6])[4])
query
6 Answers
+ 1
ok thanks
0
What exactly is your question? I'm confused đ€
0
I have changed look it again
0
I still don't quite understand what you are asking. Do you want an output explanation or...?
0
ans is 4 ...I want explanation
0
Odd = [1,3,5]
# Odd + [2,4,6] would be [1,3,5,2,4,6]
# then access 5th element [4] (index 4) is 4