
Python
IsYuh
科研菜鸟,记录一下用到的东西
展开
-
Python——机选大乐透
Python——机选大乐透原创 2023-08-10 21:58:55 · 853 阅读 · 0 评论 -
Python ——下载GPM IMERG数据
【代码】Python ——下载GPM IMERG数据。原创 2023-05-27 16:15:27 · 993 阅读 · 0 评论 -
Aliyun——机器翻译——文献翻译
机器翻译原创 2023-04-10 20:04:39 · 406 阅读 · 0 评论 -
Python——图像的白化和裁剪
【代码】Python——图像的白化和裁剪。原创 2023-02-10 09:33:38 · 1546 阅读 · 0 评论 -
Python——处理CSV文件
Python——处理CSV文件。原创 2022-11-13 10:22:25 · 2111 阅读 · 0 评论 -
Python报错——All strings must be XML compatible: Unicode or ASCII, no NULL bytes or control characters
【代码】Python报错——All strings must be XML compatible: Unicode or ASCII, no NULL bytes or control characters。原创 2022-11-05 16:53:45 · 2195 阅读 · 0 评论 -
Python——文献翻译
调用讯飞翻译API翻译文献原创 2022-10-26 16:46:54 · 676 阅读 · 0 评论 -
Python —实现批量读取指定文件夹中的图片大小并写入EXCEL
from PIL import Imageimport osimport xlwtimg_folder = "D:\image" #需要识别图片的文件夹imlist = os.listdir(img_folder)imlist.sort()book = xlwt.Workbook(encoding='utf-8',style_compression=0)sheet = book.add_sheet('landslide图片大小',cell_overwrite_ok=True)col =原创 2022-04-22 12:02:31 · 1208 阅读 · 0 评论 -
Python—在txt中将多行参考文献并为一行进行批量下载
Python—在txt中将多行参考文献并为一行进行批量下载。原创 2022-10-13 10:09:19 · 659 阅读 · 0 评论 -
Python——将图像文件转化为RGB
from PIL import ImageL_path = '待转化文件路径'L_image = Image.open(L_path)out = L_image.convert("RGB")out.save("输出文件路径")原创 2022-02-10 14:44:45 · 2891 阅读 · 1 评论 -
Python实现机选双色球
python实现机选双色球原创 2022-02-18 22:37:49 · 926 阅读 · 0 评论 -
Python复制指定文件夹内指定文件到指定路径
Python复制指定文件夹内指定文件到指定路径原创 2022-01-28 19:02:00 · 3747 阅读 · 3 评论 -
Python—获取电脑的锁屏壁纸
快速获取电脑的锁屏壁纸原创 2022-03-14 09:49:28 · 902 阅读 · 0 评论