How to create a basic QR code in python
In easy step you generate your own QR.
If you need a qr code generator so you not go to google and search qr code qenerator you easily code and generate a customize qr code.๐ถโ๐ซ๏ธ
HOW TO CREATE
SYNTAX๐
import qrcode
img = qrcode.make("Thanks for reading my blog")
img.save("qr.png")
SCAN THE QRCODE.๐
Explain the Syntax
In the import QR code it's a library exist in python ti create qrcode
qrcode make its a function to make a qrcode
img.save its used for save a img of qrcode into a computer.
ย