Create a function called check_password() that takes a string password. The function checks whether an imaginary password is valid – contains only letters and digits. The letters may be lowercase, uppercase, or a combination of both. If the string is a valid password, print it. If it contains anything else, print the message "There is a wrong string!"
You do not need to take any input or call the function yourself.