摘要: Pandas Replace NaN with blank/empty string 我有一个Pandas Dataframe,如下所示: 1 2 3 0 a NaN read 1 b l unread 2 c NaN read 我想用空字符串删除NaN值,以便它看起来像这样: 1 2 3 0 a 阅读全文
posted @ 2022-01-27 20:36 豆浆D 阅读(2351) 评论(0) 推荐(1) 编辑
摘要: all() 函数用于判断给定的可迭代参数 iterable 中的所有元素是否都为 TRUE,如果是返回 True,否则返回 False。 元素除了是 0、空、None、False 外都算 True。 函数等价于: def all(iterable): for element in iterable: 阅读全文
posted @ 2022-01-27 18:30 豆浆D 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 代码 # 字典以属性的方式访问1 class AttributeDict(dict): __getattr__ = dict.__getitem__ __setattr__ = dict.__setitem__ # 字典以属性的方式访问2 class ObjDict(dict): """ Makes 阅读全文
posted @ 2022-01-27 18:28 豆浆D 阅读(215) 评论(0) 推荐(0) 编辑