this entry collects the solution files i have for change data type. i may expand it with a fuller write-up later, but the implementation files are already here.
available solution files
- Python
change-data-type/change-data-type.py
notes and solution files for change data type.
this entry collects the solution files i have for change data type. i may expand it with a fuller write-up later, but the implementation files are already here.
change-data-type/change-data-type.pyimport pandas as pd
def changeDatatype(students: pd.DataFrame) -> pd.DataFrame:
students[class="syntax-string">'grade'] = students[class="syntax-string">'grade'].astype(int)
return students