Search found 2 matches

by Rathinagiri
Sun May 26, 2024 5:17 am
Forum: 4. Python - Programing Advanced
Topic: Merging multiple excel sheets
Replies: 2
Views: 94

Re: Merging multiple excel sheets

Power of Python in a single line!

Code: Select all

files = [f for f in os.listdir(path) if f.endswith('.xlsx')]
by Rathinagiri
Sun May 26, 2024 4:45 am
Forum: 4. Python - Programing Advanced
Topic: Merging multiple excel sheets
Replies: 2
Views: 94

Re: Merging multiple excel sheets

Very nice Ram. A small doubt, should we use '//' or '\\' in the path even when we use raw string r' ?