What are the different ways to iterate through two lists in parallel in Python?

Suppose I have more than one list and I want to iterate all of them through the single loop. I have found one method of doing it that is below:

But I’m not sure if it is efficient or not. Can someone confirm me it is possible to do this for more than two lists or not? I will appreciate it if you share some alternative methods of doing it.