📅 2012-Apr-12 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ python, time ⬩ 📚 Archive
import time start = time.clock() # Do something here end = time.clock() print( "Time: ", end - start, " seconds" )