What will be the output of the following Python code?
import time
t=(2010, 9, 20, 8, 15, 12, 6)
time.asctime(t)
import time
t=(2010, 9, 20, 8, 15, 12, 6)
time.asctime(t)A. '20 Sep 2010 8:15:12 Sun'
B. '2010 20 Sept 08:15:12 Sun'
C. 'Sun Sept 20 8:15:12 2010'
D. Error
Answer: Option D

Join The Discussion