English

Give the output of the following when num1 = 4, num2 = 3, num3 = 2. print((0 < 6) or (not(10 == 6) and (10 < 0))) - Computer Science (Python)

Advertisements
Advertisements

Question

Give the output of the following when num1 = 4, num2 = 3, num3 = 2.

print((0 < 6) or (not(10 == 6) and (10 < 0)))

Short Note

Solution

print( (0 < 6) or (not (10 == 6) and (10 < 0) ) )

print(True or (not False and False))

print(True or (True and False))

# not will be evaluated before and/or.

print(True or False)

print(True)

Therefore, the output will be 'True'.

shaalaa.com
Operators in Python - Relational Operator (>,>=,<=,=,!=)
  Is there an error in this question or solution?
Chapter 5: Getting Started with Python - Exercise [Page 117]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 5 Getting Started with Python
Exercise | Q 7. n) | Page 117
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×