摘要: # 0. pip install pymysql # 1. 导入 pymysql import pymsql # 2. 创建一个数据库连接对象 # 3. 创建游标 cursor = conn.cursor() # 4. SQL执行 cursor.execute(sql) # 5. DML提交事务 c 阅读全文
posted @ 2022-09-29 23:26 Avicii_2018 阅读(229) 评论(0) 推荐(0) 编辑
摘要: import logging import os import time class Log: def __init__(self): self.logger = logging.getLogger() # 设置日志打印级别. 打印该级别及以上的日志信息. self.logger.setLevel( 阅读全文
posted @ 2022-09-29 13:08 Avicii_2018 阅读(25) 评论(0) 推荐(0) 编辑
摘要: os.path.join()函数:连接两个或更多的路径名组件 如果拼接在后的参数中含有'\'开头的参数,将从'\'开头的参数开始,前面的参数均将失效,并且路径将从对应磁盘的根目录开始。 import os import os Path1 = 'home' Path2 = 'develop' Path 阅读全文
posted @ 2022-09-29 01:16 Avicii_2018 阅读(125) 评论(0) 推荐(0) 编辑
摘要: os.path.dirname(path) # 返回文件所在的目录. import os.path print(os.path.dirname(__file__)) 打印结果: D:/Avicii/Api_Test/testcases 阅读全文
posted @ 2022-09-29 01:10 Avicii_2018 阅读(63) 评论(0) 推荐(0) 编辑
摘要: os.getcwd()获取当前文件所在文件夹的路径 os.path.realpath(__file__)获取当前文件的路径. 注: 可以看出__file__表示了当前文件的path import os.path print(os.getcwd()) print(os.path.realpath(__ 阅读全文
posted @ 2022-09-29 01:00 Avicii_2018 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1. 处理对象是string 字符串 2. 遍历去除首尾指定字符串 str = '123abcd321' a = str.strip('123') print(a) 打印结果: abcd str = '12a3abcd321' a = str.strip('123') print(a) 打印结果: 阅读全文
posted @ 2022-09-29 00:45 Avicii_2018 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 日志模块log_utils.py import logging # 创建一个日志器 logger = logging.getLogger() # 设置日志打印级别. 打印该级别及以上的日志信息. logger.setLevel(logging.DEBUG) # 创建指定的输出格式 format = 阅读全文
posted @ 2022-09-29 00:04 Avicii_2018 阅读(19) 评论(0) 推荐(0) 编辑