API
文章平均质量分 50
语音不识别
专注大数据和人工智能领域
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python多线程
相关APIsleep(4) :线程睡眠4秒threading.Thread(target=方法名称,args=(传入方法的参数)):把该程序创建为新线程t.start():启动多线程t.join():作用:该线程的父级线程等待此线程结束import threadingfrom time import ctime, sleepdef music(music): for i in range(2): print("I was listening to %s..原创 2021-09-09 18:57:03 · 201 阅读 · 0 评论 -
使用matplotlib.pyplot.scatter()画散点图API参数
matplotlib API地址:https://matplotlib.org/stable/api/index.html所有的图样例:https://matplotlib.org/stable/gallery/index.html教程地址:https://matplotlib.org/stable/tutorials/index.htmlpyplot绘制散点图API地址:https://matplotlib.org/stable/api/pyplot_summary.html...原创 2021-09-01 19:49:43 · 478 阅读 · 0 评论
分享