有时候,可能需要获取a~z、A~Z组成的26个字母的字符串,这篇文章介绍一种简单的方法。
只需要几句简单到不能再简单的代码!你不会还在傻傻地一个个字母敲吧~
/*** author heyunlin* version 1.0*/
public class Example {/*** 小写字母*/priv…
一、 导入库
pip install Image 二、确保库中存在Image库,可以在Terminal或控制台中查看
pip list 三、图像后缀处理
import os
from PIL import Image
def convert_to_png(input_folder, output_folder):if not os.path.exists(output_folder):os.makedirs(outp…