Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 248 Bytes

conversion.md

File metadata and controls

14 lines (10 loc) · 248 Bytes

Conversion

What is the result of each of the following statements?

  1. int(False)
  2. int(True)
  3. bool(0)
  4. bool(1)
  5. True + 2
  6. float(True)

Solution

Click here to view the solution