import re
x = 'Imagine this is the email address: 6775.love@everywhere.com'
y = re.findall('S+@S+', x)
# according to the expression it will look for a string with @ sign
# and which starts and end with a space
print(y) # Output: ['6775.love@everywhere.com']