Create a function that accepts a string, checks if it's a valid email address and returns either True or False, depending on the evaluation.
@ character.. character.@ must have at least one character in front of it.
"e@innokodakademija.com" is valid while "@innokodakademija.com" is invalid.. and the @ must be in the appropriate places.
"hello.email@com" is invalid while "john.smith@email.com" is valid.If the string passes these tests, it's considered a valid email address.
validate_email("@gmail.com") ➞ False
validate_email("hello.gmail@com") ➞ False
validate_email("gmail") ➞ False
validate_email("hello@gmail") ➞ False
validate_email("hello@innokodakademija.com") ➞ True