Advertisement
Dprogrammed1

python que 34

Jun 10th, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def num(m):
  2.     t1 = time.time()
  3.     for i in range(0,m):
  4.         print(i)
  5.     t2 = time.time()
  6.     print(str(t2-t1))
  7.  
  8.     num(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement