Dear all,
I want to change the following code
for directory, dirs, files in os.walk(directory_1):
do_something()
for directory, dirs, files in os.walk(directory_2):
do_something()
to this code:
for directory, dirs, files in os.walk(directory_1) + os.walk(directory_2):
do_something()
I get the error:
unsupported operand type(s) for +: 'generator' and 'generator'
My question is, how to join two generators in Python?
Thank you very much!