Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 202 Bytes

operations_lvl_1.md

File metadata and controls

12 lines (8 loc) · 202 Bytes

Operations

What is the result of the following operations in Python?

  1. 4 / 3
  2. 4 / 0
  3. 4 // 3
  4. 4 // 0

Solution

Click here to view the solution