Advertisement
Guest User

new

a guest
Oct 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. import math
  2.  
  3. print(math.pi)
  4.  
  5.  
  6. def calcul ():
  7.     i=0
  8.     while i <11:
  9.         print (i)
  10.         i=i+1
  11.        
  12.        
  13.        
  14. calcul()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement