p
y
c
h
a
l
l
e
n
g
e
r
Home
Basic Data Analysis
Marathon Data
Rename a Column
Rename a Column
The marathon results file calls it
full_name
, but the registrations file uses
name
. Rename the column so they match.
Premium
reset
def greet(name): return f"Hello, {name}!" print(greet("Erik"))
Python
Setting up Python environment...
Output