
深入浅出Pandas学习代码
文章平均质量分 90
Hajo_
任世事喧嚣,愿心无波澜。观众世成双,念一生无妨。
展开
-
Part_02_数据结构
python数据结构 内置数据结构 可变类型 :list(列表)、dict(字典)、set(集合) 不可变类型:Number(数字)、str(字符串)、tuple(元组) 类型的判断可以通过python的内置函数type()来获取 ,也可以通过内置函数isinstance()进行判断 import numpy as np import pandas as pd a = 123 type(a) # int int a = "Hello" type(a) # str str isinstance原创 2021-12-18 15:43:11 · 663 阅读 · 0 评论 -
第一章Pandas快速入门
《深入浅出Pandas》第一章pandas快速入门代码原创 2021-12-05 17:54:57 · 1187 阅读 · 0 评论