Home >>Python Programs >Python program to generate the QR code in Python
In this example, we will see a Python program through which we can generate a QR code.
QR code is a short form of the quick response code. It is a type of matrix barcode that contains information like some specific link, important message, email-id, etc.
In this program here, we will use the qrcode module that is used to generate the QR code of some specific information most easily.
Program:
# importing the module
import qrcode
# information
First_qrcode=qrcode.make(r'Hello everyone... I am Jerry.')
# to see the QR code on the computer screen
First_qrcode.show()