Guest User

Untitled

a guest
Dec 15th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. total = 100
  2. total += 10
  3. total -= 20
  4. total *= 2
  5. total /= 3
  6. total //= 3.33
  7. total **= 2
  8. total %= 2
  9.  
  10. print(total)
Add Comment
Please, Sign In to add comment