Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1.  
  2. import decimal
  3.  
  4. x = 3300
  5. y = 0.90
  6. z = 1
  7.  
  8. while x > 1 :
  9. print z, ":", x * y
  10. z += 1
  11. x = x * y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement