摘要: class DictionaryProcessingSet: result_dict = {} def get_key(self, data: dict, demand: list, countKey: str = ''): """ :param data: 入参数据 :param demand: 阅读全文
posted @ 2023-10-09 17:18 公子Learningcarer 阅读(351) 评论(0) 推荐(0) 编辑
摘要: import re s = '1102231990xxxxxxxx' res = re.search('(?P<province>\d{3})(?P<city>\d{3})(?P<born_year>\d{4})',s) print(res.groupdict()) # 结果:{'province' 阅读全文
posted @ 2023-10-09 11:04 公子Learningcarer 阅读(28) 评论(0) 推荐(0) 编辑
摘要: import json # 涉及到中文字符的时候,需要指定ensure_ascii=False # 字符串转json strData = '{"name": "John", "age": 30, "city": "New York"}' # 第一步将字符串解析为python对象 strLoads = 阅读全文
posted @ 2023-10-09 10:29 公子Learningcarer 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 标识符,必须以字母、下画线(_)开头(数字不能打头),后面可以跟任意数目的字母、数字和下画线(_)。字母并不局限于 26 个英文字母,可以包含中文字符、日文字符等。Python 语言是区分大小写的,因此 abc 和 Abc 是两个不同的标识符。标识符不能是 Python 关键字,但可以包含关键字。标 阅读全文
posted @ 2023-10-09 10:00 公子Learningcarer 阅读(402) 评论(0) 推荐(0) 编辑