Skip to content

Files

Latest commit

845b409 · Jan 22, 2023

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