Newbie in python, I have the following code:
XX = [A,B,C,D,E]
src_path = 'C:\love\hi_XX\you'
for file in src_path:
Do something....
I want to loop through all files in C:\love\hi_A\you first, then C:\love\hi_B\you all the way to C:\love\hi_E\you.
I am using Spyder. How do I make this work? Thank you.