We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent befa136 commit cec7818Copy full SHA for cec7818
Email Slicer/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