LoginSignup
1
1

More than 5 years have passed since last update.

実行時間の測定

Posted at
import time
if __name__ == '__main__':
    start = time.time()
    for i in range(0,11):
        print i
    end = time.time()
    print "exec time : {}".format(start - end)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1