15 Jun 2024PythonUnknown

Modify Columns

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.

available solution files

  • Python modify-columns/modify-columns.py

Solution files

Pythonmodify-columns/modify-columns.py
import pandas as pd

def modifySalaryColumn(employees: pd.DataFrame) -> pd.DataFrame:
    employees.salary*=class="syntax-number">2
    return employees