Skip to content

Commit cec7818

Browse files
committed
Add email slicer
1 parent befa136 commit cec7818

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Email Slicer/Email Slicer.py

+6
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)