Which code will you use to generate a date and time output in the following format? 13-Mar-2020 16:42:58
A. print(datetime.now().strftime("%d-%b-%Y %H:%M:%S"))
B. get_time(format="dd-MMM-yyyy HH:mm:ss")
C. create_date("13-Mar-2020 16:42:58")
D. format_date(13, "March", 2020, 16, 42, 58)