Which of the following is used to define a block of code in Python?
पायथन में कोड के ब्लॉक को परिभाषित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
What will be the output of print(5 // 2) ?
print(5 // 2) का आउटपुट क्या होगा?
What is the output of the program:
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
def myfun(a): a=a+2 a=a*2 return a print myfunc(2)
Evaluate this expression?
इस एक्सप्रेशन का मूल्यांकन करें
2+9*(3*12-8)/10 28/10
What is the output of the following c
निम्नलिखित कोड का आउटपुट क्या है?
>>min(max(False,3,-4), 2,7)