Question: python please E11. Create a string called movie and store the title of a movie in it. Pick a movie whose title contains at least

python please
E11. Create a string called movie and store the title of a movie in it. Pick a movie whose title contains at least 15 characters. Using a for-loop and an if-statement, count and display the number of lowercase vowels in the movie title. (Hint: suppose ch stores a particular character from a string. The Boolean condition ch in 'aeiou' evaluates to True when ch stores a vowel.) E12. Use the enumerate function and a for-loop to print each uppercase letter, along with its position in the alphabet, each on a separate line. Your output should resemble the following: A 1 B 2 C 3 Z 26 [] 1 import string 2 # use string.ascii_uppercase to access the uppercase letters in alphabetical order 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
