p
y
c
h
a
l
l
e
n
g
e
r
Home
Intermediate Python
Datetime
Exercise: Format with month name
Exercise: Format with month name
Produce a friendly string like
'July 04, 2024'
using the format
'%B %d, %Y'
.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output