Python3制做二维码

#从键盘输入一句话,把它作成二维码的信息 #根据url生成二维码 import qrcode def qrcodeWithUrl(url): img=qrcode.make(url) #保存图片 savePath='1.png' img.save(savePath) print(img) #根据输入内容生成二维码 def qrcodeWithText
相关文章
相关标签/搜索