首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴JasonBi的代码贴Python
# -*- encoding = utf-8 -*-
import qrcode
from tkinter import *
from tkinter import messagebox
import os

def made(string,filename):
    if not os.path.exists('images'):
        os.mkdir('images')
    os.chdir('images')
    img = qrcode.make(string)
    img.save(filename)
......................
阅读全部 | 2022年6月9日 09:06
1
JasonBi