import re
email = 'anyemail£()@gmail.com'
if re.search("[~!#$%^&*()_+{}:;\']", email):
	print("Test 7 - Failed! The email has invalid characters!")
	test7 = "failed"
else:
	print("Test 7 - Passed! The email has no invalid characters!")
	test7 = "passed"