Skip to content

Instantly share code, notes, and snippets.

@Nicolas-Vandeput
Created July 3, 2021 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nicolas-Vandeput/31c1d58709cc65ae80f751e6a01fd27c to your computer and use it in GitHub Desktop.
Save Nicolas-Vandeput/31c1d58709cc65ae80f751e6a01fd27c to your computer and use it in GitHub Desktop.
start = time.time()
df = pd.read_excel("Dummy 0.xlsx")
for file_number in range(1,10):
df.append(pd.read_excel(f"Dummy {file_number}.xlsx"))
end = time.time()
print("Excel:", end - start)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment