p
y
c
h
a
l
l
e
n
g
e
r
Home
Intermediate Python
Datetime
Exercise: Parse a custom format
Exercise: Parse a custom format
Parse the string
'15/03/2025'
using the format
'%d/%m/%Y'
.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output