TOPIC

磷光与烟火逆流

一个敲代码的程序猿

随笔分类 -  Pandas

摘要:Pandas Series # 创建Series实例 import pandas as pd a = [1,2,3] myvar = pd.Series(a) print(myvar) 0 1 1 2 2 3 dtype: int64 # 指定index b = ["Google", "Runoob 阅读全文
posted @ 2021-05-14 18:05 Jacobyang 阅读(170) 评论(0) 推荐(0)