09 2022 档案
摘要:在try之前、加上# noinspection PyBroadException # noinspection PyBroadException try: ... except: ...
阅读全文
摘要:# 使用list() bytesDate = '源数据'.encode() print(bytesDate, list(bytesDate))
阅读全文
摘要:import urllib3 # 禁用警告 urllib3.disable_warnings() # urllib3 不验证ssl _pool_params = dict(cert_reqs='CERT_NONE', assert_hostname=False) url = 'https://www
阅读全文