What will be the output of the following Python code snippet?
print(not(3>4))
print(not(1&1))
Qus
निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
print(not(3>4))
print(not(1&1))
A. True True B. True False
C. False True D. False False
Solution
B. True False
Explanation
The function not returns true if the argument amounts to false, and false if the argument amounts to true. Hence the first function returns false, and the second function returns false.