The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #296
a = 3 * 5
b = 3 * 5.0
print(a == b)
It will return True . Python handles comparing numbers of different types with no issues! (stackoverflow.com/questions/10037115/comparing-a-float-an...)
Question difficulty: 🔵🔵🔵🔵🔵