What Will Be The Output Of The Following Python Codep Pre #850
What will be the output of the following Python code?</p> <pre><code class="language-python">import time t=(2010, 9, 20, 8, 45, 12, 6, 0, 0) time.asctime(t)</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Modules - Python Datetime Module - Quiz No.2.
What will be the output of the following Python code?
import time t=(2010, 9, 20, 8, 45, 12, 6, 0, 0) time.asctime(t)
‘Sep 20 2010 08:45:12 Sun’
‘Sun Sep 20 08:45:12 2010’
’20 Sep 08:45:12 Sun 2010’
‘2010 20 Sep 08:45:12 Sun’