We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8664ae7 commit 2e0a94eCopy full SHA for 2e0a94e
Text_to_QR.py
@@ -0,0 +1,6 @@
1
+import qrcode
2
+print(f"Enter the text that you want to convert to QRcode : ")
3
+text = str(input(""))
4
+img = qrcode.make(text)
5
+img.save('qrcode.jpg')
6
+print("Your qrcode is save as 'qrcode.jpg'")
0 commit comments