Is it possible to iterate through multiple lists and return arguments from different lists within the same loop?
I.e., Instead of -
For x in trees:
Print(x)
For y in bushes:
Print(y)
Something like -
For x,y in trees,bushes:
Print(x +"\n"+ y)