Vidyalelo
Python · Q15

Module in Python

Programming · Python · question 15

Q15

What will be the output if we try to extract only the year from the following Python code? (time.struct_time(tm_year=2017, tm_mon=6, tm_mday=25, tm_hour=18, tm_min=26, tm_sec=6, tm_wday=6, tm_yday=176, tm_isdst=0)) import time t=time.localtime() print(t)

A.
t[1]
B.
tm_year
C.
t[0]
Answer
D.
t_year

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board