conversion.md
April 17, 2022 ยท View on GitHub
Conversion
What is the result of each of the following statements?
int(False)int(True)bool(0)bool(1)True + 2float(True)
Solution
01FalseTrue31.0
April 17, 2022 ยท View on GitHub
What is the result of each of the following statements?
int(False)int(True)bool(0)bool(1)True + 2float(True)01FalseTrue31.0