听见涛声_数说张小桃

日拱一卒 | 梳理、沉淀、数据科学家踩坑之路 | 努力成为数据分析领域python最强的人

导航

2019年12月27日 #

技巧 |Python 使用dict.fromkeys()快速生成一个字典

摘要: Python字典的fromkeys方法“疑惑”解析 https://blog.csdn.net/lingyunxianhe/article/details/83304002 阅读全文

posted @ 2019-12-27 02:08 数说张小桃 阅读(441) 评论(0) 推荐(0) 编辑

python 列表(list)去重方法总结

摘要: https://www.cnblogs.com/xuchunlin/p/6045275.html 阅读全文

posted @ 2019-12-27 02:06 数说张小桃 阅读(305) 评论(0) 推荐(0) 编辑

区别 |python 的read、readline、readlines和write、writelines

摘要: 1、读取| read、readline、readlines read([size]): 读出指定大小的内容,默认为读取所有。(小心内存爆炸) readlines(): 读出所有,返回值是是一个list。 readline(): 只读出一行。 2、写入|write、writelines(切记没有wri 阅读全文

posted @ 2019-12-27 02:02 数说张小桃 阅读(983) 评论(0) 推荐(0) 编辑

区别 |Python的 open() 和with open() as

摘要: https://www.jianshu.com/p/34d7fff5fc51 1、open() 方法 意义:打开一个文件并返回文件对象,如果该文件无法被打开,会抛出OSError。最后一定要调用close()方法保证关闭文件对象。 公式:open( file, mode='r', buffering 阅读全文

posted @ 2019-12-27 01:48 数说张小桃 阅读(1321) 评论(0) 推荐(0) 编辑