Date format: Difference between revisions

→‎{{header|Python}}: Added more advanced/recent usage examples
m (→‎{{header|Python}}: Update second example to conform with new requirements)
(→‎{{header|Python}}: Added more advanced/recent usage examples)
Line 2,721:
today = datetime.date.today()
# The first requested format is a method of datetime objects:
print today.isoformat()
# For full flexibility, use the strftime formatting codes from the link above:
print today.strftime("%A, %B %d, %Y")
# This mechanism is integrated into the general string formatting system.
# You can do this with positional arguments referenced by number
"The date is {0:%A, %B %d, %Y}".format(d)
# Or keyword arguments referenced by name
"The date is {date:%A, %B %d, %Y}".format(date=d)
# Since Python 3.6, f-strings allow the value to be inserted inline
f"The date is {d:%A, %B %d, %Y}"
</lang>
 
Anonymous user