摘要: import time dic = {} Controls = {"1": "查看角色", "2": "修炼", "3": "战斗"} class game: def __init__(self, n, g, s): self.name = n self.age = g self.sex = s d 阅读全文
posted @ 2024-12-09 17:52 GDquicksand 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1、如何创建类 class 类名: pass 2、创建方法 构造方法,__init__(self,arg) obj = 类('a1') 普通方法 obj = 类(‘xxx’) obj.普通方法名() 3、面向对象三大特性之一:封装 class Bar: def __init__(self, n,a) 阅读全文
posted @ 2024-12-09 16:49 GDquicksand 阅读(1) 评论(0) 推荐(0) 编辑
摘要: import xml.etree.ElementTree as ET tree = ET.parse("test.xml") root = tree.getroot() print(root.tag) # 遍历xml文档 for child in root: print(child.tag, chi 阅读全文
posted @ 2024-11-26 17:50 GDquicksand 阅读(1) 评论(0) 推荐(0) 编辑
摘要: JSON和pickle区别在于: JSON不能转换函数类等,但pickle可以进行转换,并且pickle也支持字典、列表等类型 JSON格式可以全语言通用方便阅读查看,pickle格式只支持python使用 shelve跟pickle类似,但shelve可以生成一个字典对象,根据字典对象进行操作 i 阅读全文
posted @ 2024-11-22 18:03 GDquicksand 阅读(1) 评论(0) 推荐(0) 编辑
摘要: import re # 正则表达式中的元字符: # “.” 点通配符表示可以替换表达式中的任意字符,只能代指一个字符,除换行符外 print(re.findall("a..", "hdhgaqwe")) # “^”只从开始匹配 print(re.findall("^a..", "ahdhgaqwe" 阅读全文
posted @ 2024-11-12 16:45 GDquicksand 阅读(1) 评论(0) 推荐(0) 编辑
摘要: import configparser config = configparser.ConfigParser() ''' # 创建配置文件 config["DEFAULT"] = {"ServerAliveInterval": "45", "Compression": "yes", "Compres 阅读全文
posted @ 2024-11-08 17:37 GDquicksand 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import logging # 第一种方式,只能选择控制台输出或文件输出日志 # logging.basicConfig(level=logging.DEBUG, # format="%(asctime)s %(filename)s %(lineno)d %(levelname)s %(messa 阅读全文
posted @ 2024-09-24 10:01 GDquicksand 阅读(2) 评论(0) 推荐(0) 编辑
摘要: # 加密模块 import hashlib m = hashlib.md5() # 创建MD5加密方法的对象 m.update("123".encode("utf-8")) # 加密内容,因为Python3默认编码方式是Unicode,所以需要转码成UTF-8 print(m.hexdigest() 阅读全文
posted @ 2024-09-24 09:59 GDquicksand 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import random print(random.random()) # 0-1的随机数 print(random.randint(1, 10)) # 指定范围整数的随机数 print(random.randrange(1, 10)) # range生成序列的随机数 print(random.c 阅读全文
posted @ 2024-09-14 17:44 GDquicksand 阅读(4) 评论(0) 推荐(0) 编辑
摘要: import time import datetime print(time.time()) # 时间戳格式 time.sleep(1) # 延迟时间 print(time.localtime()) # 北京时区元组格式时间,结构时间 print(time.strftime("%Y-%m-%d %H 阅读全文
posted @ 2024-09-14 17:43 GDquicksand 阅读(2) 评论(0) 推荐(0) 编辑