निम्नलिखित का आउटपुट क्या है?
What is the output of the following ?
print(int())
A)
B)
C)
D)
Explanation:
In Python, calling int()
without any arguments returns the default value of 0.
So, print(int())
will output 0
.
Answer: (C) 0