用Python3 QrCode生成一個二維碼

Carter_Ron發表於2020-03-07

今天,我要帶著大家來生成一個二維碼。

首先,我們得下載qrcode這個第三方庫:

pip install qrcode

現在,我們就能開始生成啦!

import qrcode
img = qrcode.make('內容/連結')
img.save('檔名.png')

現在看看我生成的:

enter image description here

相關文章