I have a list
list = [[\'vegas\',\'London\'],[\'US\',\'UK\']]
How to access each element of this list?
It's simple
y = [['vegas','London'],['US','UK']] for x in y: for a in x: print(a)