-
python官方插件地址 https://www.python.org/
python官方文档 https://docs.python.org/zh-cn/3/
logging日志相关 https://docs.python.org/zh-cn/3/howto/logging.html?highlight=%E6%97%A5%E5%BF%97
更改显示的日志格式 https://docs.python.org/zh-cn/3/library/logging.html#logrecord-attributes pytest官方地址 https://docs.pytest.org/en/7.0.x/ requests官方地址 https://docs.python-requests.org/zh_CN/latest/
# 方法一,直接通过 + 号直接连接 不推荐,因为python是弱类型语言,没法判断连接的是不是字符串 website = 'python' + 'tab' + '.com'



