'''
to use the split function, will have to ask the user for their email address, and we will
try to split the "@"
x = input("Email should contain @: ")
romeo = x.split('@')
print(romeo)
a = " smurf "
a = a.strip()
#remove space at begining and end of string
print(a)
#smurf
txt = " banana "
x = txt.strip()
print("of all fruits", x, "is my favorite")
txt = ",,,,,rrttgg.....banana....rrr"
x = txt.strip(",.grt")
print(x)