निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>from datetime import *
print(datetime.today().strftime('%B'))</code></pre>
निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>from datetime import *
print(datetime.today().strftime('%d'))</code></pre>
A.Displays the hour number of 12-hour clock
B.Displays the date and time appropriate for locale
C.Displays the day of the month number (from 01 to 31)
D.Displays the microsecond number (from 0 to 999999)
Correct Answer: Displays the day of the month number (from 01 to 31)
Q48.
निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = 'Python'
print(x.capitalize())</code></pre>
निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = 'python job interview'
print(x.title())</code></pre>
निम्नलिखित स्टेटमेंट का आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>x = 'python jobs'
print(x.upper())</code></pre>