Write a python program to ask a user to enter the name of their favorite movie, and then create a random password including the character with event index in the entered movie.
First, you should define a function to ask the user for an entry for the question below. The entry should be string. Numbers are not accepted. If user enters a number, the invalid input should be shown del favorite movie Then, defines a function called "Evenchar" to extract the letter with the oven index in the entered movie: def Evenchar Finally, in the password function, you should ask the user for the length of password. Then, a random password should be shown as the output of the program including the letters from Evenchar function. The location of the Evenchar output in the password should be after the second letter in the password Note: The minimum length of password should be 10, otherwise ask user for another length. def password EX: If the user favorite movie is "Breaking bad", the letters with even index are: "Bekn a" (space also included) The resulted password should look like if the length of password is 12: HQBekn aTupg
Note: the length of your password should at least be higher than the length of your favorite movie