Computer Science, asked by pavanchowdary78811, 1 year ago

Python check if word exists in sorted list fast way

Answers

Answered by swapnil583
0
a = [4,2,3,1,5,6] if a.count(7) == 1: b=a.index(7) "Do something with variable b"
Similar questions