[LeetCode] Pandas / 2877. Create a DataFrame from List
2024. 7. 8. 14:30ㆍCoding/LeetCode-Pandas
문제 링크
https://leetcode.com/problems/create-a-dataframe-from-list/description/
문제
코드
import pandas as pd
def createDataframe(student_data: List[List[int]]) -> pd.DataFrame:
return pd.DataFrame(student_data, columns=['student_id', 'age'])
'Coding > LeetCode-Pandas' 카테고리의 다른 글
[LeetCode] Pandas / 2882. Drop duplicate rows (0) | 2024.07.08 |
---|---|
[LeetCode] Pandas / 2881. Create a new column (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 |