Post

@clcoding D
A) 10 is less than 12 which is true
B) 10 is not equal to 12 which is true
C) 10 is less than OR equal to 12. In this statement, one truth statement returns true. (True OR False = True)
So all statements are true.
English

@clcoding E) None of them
print() function returns None.
return print(x) = None
English

@clcoding None. print does not return True or False. As per the docstring, 'Prints the values to a stream, or to sys.stdout by default.'
English

@clcoding Option D.Because that all returns the Boolean statement True
English

@clcoding >>> print(10<12);print(10!=12);print(10<=12)
True
True
True
English

@clcoding I’m sure all is correct except for B so I guess the answer is D as they all agreed on the replays
English





























