p
y
c
h
a
l
l
e
n
g
e
r
Home
Basic Data Analysis
Marathon Data
Standardize the DNF Column
Standardize the DNF Column
The
dnf
column has six different values for what should be two:
Y
,
y
,
Yes
,
N
,
n
,
No
. Standardize it so only
y
and
n
remain.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output