Skip to content

Instantly share code, notes, and snippets.

@ding-co
Last active December 18, 2021 04:14
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 ding-co/d968c5187f910cdb8a7985105855e897 to your computer and use it in GitHub Desktop.
Save ding-co/d968c5187f910cdb8a7985105855e897 to your computer and use it in GitHub Desktop.
Measure Performance Time
import time
start_time = time.time() # Start Measure
# ** Source Code **
end_time = time.time() # End Measure
print("time: ", end_time - start_time) # print performance time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment