摘要: python文件写中的f.flush()方法 - zengsf - 博客园 (cnblogs.com) f = open("input.txt", "w") f.write("aaaaaa") f.flush() #强行把缓冲区中的内容放到磁盘中 s = input("请输入回车键") f.clos 阅读全文
posted @ 2022-05-05 10:49 小鱼小鱼hi 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 数据科学必备在Python中生成随机数据详解 - 代码天地 (codetd.com) (15条消息) python生成随机数、随机字符、随机字符串_哈工大的许政的博客-CSDN博客_python 随机字符串 (15条消息) Python生成随机字符串并保存到TXT文档中_S.Gerrard的博客-C 阅读全文
posted @ 2022-04-30 11:45 小鱼小鱼hi 阅读(8944) 评论(0) 推荐(1) 编辑
摘要: (14条消息) local variable referenced before assignment 原因及解决办法_黄佳俊、的博客-CSDN博客 不要在函数内部改变全局变量的值,如果确实想改变全局变量的值(以a为例),那么需要在函数内部首先声明,即加上global a这一行代码 阅读全文
posted @ 2022-04-13 16:47 小鱼小鱼hi 阅读(2141) 评论(0) 推荐(0) 编辑
摘要: 1、\转义 ASCII 编码为每个字符都分配了唯一的编号,称为编码值。在 Python 中,一个 ASCII 字符除了可以用它的实体(也就是真正的字符)表示,还可以用它的编码值表示。这种使用编码值来间接地表示字符的方式称为转义字符(Escape Character) 转义字符以\0或者\x开头,以\ 阅读全文
posted @ 2022-03-27 15:03 小鱼小鱼hi 阅读(193) 评论(0) 推荐(0) 编辑
摘要: Python 中不区分大小写的字符串比较 | D栈 - Delft Stack 1、lower() ###将字符串中的所有字符转换为小写字母 2、upper() ###将一个字符串变量的所有字符转换为大写字母 3、lower() ###将字符串中的所有字符转换为小写字母 normal_str1 = 阅读全文
posted @ 2022-03-05 20:16 小鱼小鱼hi 阅读(276) 评论(0) 推荐(0) 编辑
摘要: (13条消息) 学习笔记 | Python同时遍历多个列表一一对应_大虎牙的博客-CSDN博客_python通过列表一一对应 (13条消息) Python同时遍历多个列表一一对应_CJ-404的博客-CSDN博客_python两个列表一一对应 atAPNProfile = [1,2,3,38,39, 阅读全文
posted @ 2022-03-05 20:08 小鱼小鱼hi 阅读(302) 评论(0) 推荐(0) 编辑
摘要: (13条消息) 在正则表达式里面仍然可以用format()等字符串处理函数_吕艳朋的博客-CSDN博客 number = re.compile(r'number: {}'.format(aux_phonenumber)) if fnmatch.fnmatch(result, '*call id: 1 阅读全文
posted @ 2022-03-05 20:02 小鱼小鱼hi 阅读(113) 评论(0) 推荐(0) 编辑
摘要: python 正则 re模块(详细版) - 风,又奈何 - 博客园 (cnblogs.com) 1、re.sub(pattern, repl, string, count=0, flags=0) ##把string中的所有匹配表达式pattern中的地方替换成repl count : 模式匹配后替换 阅读全文
posted @ 2022-03-05 19:32 小鱼小鱼hi 阅读(1079) 评论(0) 推荐(0) 编辑
摘要: 1、打印时间戳 格式:2022-03-05 17:04:38.945 import time def get_time_stamp(): ct = time.time() print(ct) ## time.time()返回当前时间的时间戳 local_time = time.localtime(c 阅读全文
posted @ 2022-03-05 17:15 小鱼小鱼hi 阅读(40) 评论(0) 推荐(0) 编辑
摘要: (13条消息) python逐行读取文件内容的三种方法_zhengxiangwen的专栏-CSDN博客_python逐行读取txt文件 Python文件内容按行读取到列表中 - 简书 (jianshu.com) 阅读全文
posted @ 2022-02-26 17:31 小鱼小鱼hi 阅读(82) 评论(0) 推荐(0) 编辑