this entry collects the solution files i have for modify columns. i may expand it with a fuller write-up later, but the implementation files are already here.
available solution files
- Python
modify-columns/modify-columns.py
notes and solution files for modify columns.
this entry collects the solution files i have for modify columns. i may expand it with a fuller write-up later, but the implementation files are already here.
modify-columns/modify-columns.pyimport pandas as pd
def modifySalaryColumn(employees: pd.DataFrame) -> pd.DataFrame:
employees.salary*=class="syntax-number">2
return employees