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.
2 parents 09f644f + f51c39e commit 88b3c22Copy full SHA for 88b3c22
email_slicer.py
@@ -0,0 +1,6 @@
1
+
2
+email = input("Enter Your Email: ").strip()
3
+username = email[:email.index("@")]
4
+domain_name = email[email.index("@")+1:]
5
+format_ = (f"Your user name is '{username}' and your domain is '{domain_name}'")
6
+print(format_)
qr.py
@@ -0,0 +1,11 @@
+import pyqrcode
+from pyqrcode import QRCode
+# String which represent the QR code
+s = "https://fueler.io/arjun_ms"
7
+# Generate QR code
8
+url = pyqrcode.create(s)
9
10
+# Create and save the png file naming "myqr.png"
11
+url.svg("myyoutube.svg", scale = 8)
0 commit comments