Advertisement
KodingKid

Two examples of operators in Python

Apr 13th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. y = 439
  2. x = y * 9
  3. print(x)
  4. #prints 3951
  5. z = 544
  6. i = z / 13
  7. print(i)
  8. #prints 41.8461538462
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement