We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f693f24 commit 9c98d75Copy full SHA for 9c98d75
2884. Modify Columns.py
@@ -0,0 +1,5 @@
1
+import pandas as pd
2
+
3
+def modifySalaryColumn(employees: pd.DataFrame) -> pd.DataFrame:
4
+ employees['salary'] = employees['salary']*2
5
+ return employees
0 commit comments