import numpy as np
import pandas as pd

Series:
#创建Series方法1
s1=pd.Series([1,2,3,4])
s1
# 0    1
# 1    2
# 2    3
# 3    4
# dtype: int64
View Code

相关文章:

  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-21
  • 2021-06-12
  • 2021-12-21
  • 2021-04-08
  • 2022-12-23
  • 2021-12-28
相关资源
相似解决方案