Advertisement
BadMonkey_Dev

Savings.py

Dec 20th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. savings = 100
  2. result = 100 * 1.10 ** 7
  3.  
  4. print ("I started with $" + str(savings) + " and now have $" + str(result) + ". Awesome!")
  5.  
  6. pi_string = '3.1415926'
  7.  
  8. pi_float = float(pi_string)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement