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 9bdb8b0 + 21e6ae6 commit 31e9d47Copy full SHA for 31e9d47
Basic Scripts/email-slicer.py
@@ -0,0 +1,6 @@
1
+email = input("Enter Your Email: ").strip()
2
+
3
+username = email[:email.index('@')]
4
+domain = email[email.index('@') + 1:]
5
6
+print(f"Your username is {username} & domain is {domain}")
0 commit comments