Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 220 Bytes

File metadata and controls

9 lines (9 loc) · 220 Bytes
result = 10 + 30 # => 40
result = 40 - 10 # => 30
result = 50 * 5  # => 250
result = 16 / 4  # => 4.0 (Float Division)
result = 16 // 4 # => 4 (Integer Division)
result = 25 % 2  # => 1
result = 5 ** 3  # => 125