Suppose, we have the following datetime object:
from datetime import datetime
apollo_11 = datetime(1969, 7, 20, 20, 17)We've formatted it into different strings. Match the resulting string with the format used.
Tip: Remember that formats are case sensitive: %y and %Y are not the same thing!