(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"
Finish
Exit 33