Computer Science, asked by mohdbaqir001, 4 months ago

What is result of the expression 1==5 in python

Answers

Answered by Oreki
3

Result:

False

Explanation:

As 1 is not equal to 5.

Answered by anindyaadhikari13
3

Answer:-

1==5 returns False as 1 is not equal to 5.

== is used for checking equality.

Similar questions