运行 ❯
获取你自己的
Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
import pandas as pd d = {'col1': [1, 2, 3, 4, 7], 'col2': [4, 5, 6, 9, 5], 'col3': [7, 8, 12, 1, 11]} df = pd.DataFrame(data=d) count_column = df.shape[1] print("Number of columns:") print(count_column)
列数
3