Kizspy Question: 29
(Choose 1 answer)
We want to convert the below string in date-time value:
import time
str = '21/01/2017'
datetime_value = time.strptime(str,date_format)
To convert the above string, what should be written in place of date_format?
A. "%d/%m/%y"
B. "%D/%M/%Y"
C. "%d/%m/%y"
D. "%d/%m/%Y"