We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f644f commit b17c5faCopy full SHA for b17c5fa
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_)
0 commit comments