[LeetCode] Pandas / 2881. Create a new column
2024. 7. 8. 14:41ㆍCoding/LeetCode-Pandas
문제 링크
https://leetcode.com/problems/create-a-new-column/description/
문제
코드
import pandas as pd
def createBonusColumn(employees: pd.DataFrame) -> pd.DataFrame:
employees['bonus'] = employees['salary']*2
return employees
'Coding > LeetCode-Pandas' 카테고리의 다른 글
[LeetCode] Pandas / 2883. Drop missing data (0) | 2024.07.08 |
---|---|
[LeetCode] Pandas / 2882. Drop duplicate rows (0) | 2024.07.08 |
[LeetCode] Pandas / 2880. Select Data (0) | 2024.07.08 |
[LeetCode] Pandas / 2879. Display the first three rows (0) | 2024.07.08 |
[LeetCode] Pandas / 2878. Get the size of a DataFrame (0) | 2024.07.08 |