work
zwhzwh0228
这个作者很懒,什么都没留下…
展开
-
python基础及规范
python介绍 why python 易学易用 跨平台 可扩展 扩展库 官方主页: http://www.python.org/ 数据结构 弱数据类型: python是一种弱化数据类型的脚本语言 >>> 17/3 >>> 5.666666666666667 >>> a=1111111111111111...原创 2018-07-31 10:46:55 · 232 阅读 · 0 评论 -
Python对文档的处理
一.文件的打开和创建 >>> f = open('/tmp/test.txt') >>> f.read() 'hello python!\nhello world!\n' >>> f <open file '/tmp/test.txt', mode 'r' at 0x7fb2255efc00> 二.文件的读取 步骤:打...原创 2018-07-31 10:48:10 · 622 阅读 · 1 评论