摘要:
git config --global credential.helper store 阅读全文
摘要:
requests 主要应用于爬虫 pandas 主要应用于表格处理图片处理 numpy 主要应用于数据分析 matplotlib 主要应用于图像可视化 小包 replace 清洗掉无用数据 https://www.runoob.com/python/att-string-replace.html 阅读全文
摘要:
import time time.sleep(60) 程序暂停运行60秒 while True: xxxxxxxx time.sleep(60) 循环运行程序暂停运行60秒 阅读全文
摘要:
【题目1】a = "14asdhello5221world"利用字符串输出方式,通过print输出helloworld 答案: 【题目2】a=[1,5,6,7],求数组内的和 答案: 【题目3】a=[1,555,65,8586,9]求数组内各个元素的长度,将各个元素的长度,输入到一个新数组当中,比如 阅读全文