摘要: ''.join(list) 将列表、元组转化成字符串 阅读全文
posted @ 2020-08-04 22:40 6+0 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1、int 保留整数部分 2、round 四舍五入 3、math.ceil 向上取整 4、math.floor 向下取整 阅读全文
posted @ 2020-08-04 22:18 6+0 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 获得当前工作的工作路径 阅读全文
posted @ 2020-08-04 22:05 6+0 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1、mkdir 创建一级目录 2、makedirs 创建多级目录 阅读全文
posted @ 2020-08-04 21:52 6+0 阅读(172) 评论(0) 推荐(0) 编辑
摘要: path = '/Users/liujianing/PycharmProjects'print(path)for dirpath, dirnames, filenames in os.walk(path): print('dirpath:') print(dirpath) print('dirnam 阅读全文
posted @ 2020-08-04 19:56 6+0 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 输出当前工作空间 阅读全文
posted @ 2020-08-04 19:42 6+0 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1、read 将整个文件读取成一个字符串 2、f for line in f: 每次读取一行 3、readline line = f.readline()while line: print(line.strip()) line = f.readline() 每次读取一行 4、readlines fo 阅读全文
posted @ 2020-08-04 19:03 6+0 阅读(216) 评论(0) 推荐(0) 编辑
摘要: write的参数只能是字符串 writelines的参数可以是字符串也可以是一个由字符串组成的序列 阅读全文
posted @ 2020-08-04 12:36 6+0 阅读(207) 评论(0) 推荐(0) 编辑