分类: Python

14 篇文章

基于Python的数据可视化
针对贷款数据集,采用Python实现对贷款的风险预测 https://yuyy.info/big_data/class_2_贷款还款预测/LoanRiskPrediction.html
thumbnail
Python制作快递查询系统
import json from tkinter import * import requests def getType(postId): url='http://www.kuaidi100.com/autonumber/autoComNum?resultv2=1&text='+postId rs=requests.get(url) po…
PythonSelenium实现QQ空间自动登陆
代码 from selenium import webdriver browser = webdriver.Chrome() browser.set_window_position(20, 40) browser.set_window_size(1100,700) browser.get('http://qzone.qq.com') browser…
Python遍历目录内的所有.mp4文件并存到指定目录
import ospath = 'C:\Users\Yuyy\Desktop\ShortVideo' # 要遍历的目录for root, dirs, names in os.walk(path): for name in names: ext = os.path.splitext(name)[1] # 获取后缀名 if ext == '.mp4':…