What is output of 33 == 33.0
Answers
Answered by
2
true
True will be the result of the given condition as 33=33.0 and the double= represents the value will be Boolean, which is either true or false.
Answered by
3
The output is True
Explanation:
- Numbers and strings can be compared, and assessments can be performed using comparison operators.
- In contrast to arithmetic expressions, comparing operators do not output a number value. Comparison expressions yield either 1 or 0 depending on whether they are true or false.
- The comparison operator determines if something is true or untrue. We also don't have to indicate if the number is an int or a float in Python.
Then the output of the program will be True
Similar questions