mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
7 lines
200 B
Python
7 lines
200 B
Python
import pandas as pd
|
|
|
|
df1 = pd.DataFrame({'first': [0, 1, 2],
|
|
'second': [{1: (1, 2)}, {2: (3,)}, {4: 5}],
|
|
'third': [(1, 2, 3), (), (4,)]})
|
|
print(df1) ###line 6
|