Question: Exercise 5 Conditionals Exercise 5 Problem Use the variable x as you write this program. x will represent a string. Write a program that determines
Exercise
Conditionals Exercise
Problem
Use the variable x as you write this program. x will represent a string. Write a program that determines if x is a vowel a e i o and u If yes, print is a vowel, where the blank is the value of x If no print is not a vowel, where the blank is the value of x
Expected Output
If x is a then the output would be: a is a vowel.
If x is z then the output would be: z is not a vowel.
Important
The variable x is already declared for you. Please do not modify the code on lines and
TRY WITH X A
Traceback most recent call last:
File homecodioworkspacecodeselectionexercisepy line in
if xlower in 'aeiou':
NameError: name xlower' is not defined
TRY WITH X Z
Traceback most recent call last:
File homecodioworkspacecodeselectionexercisepy line in
if xlower in aeiou:
NameError: name xlower' is not defined
Submit your code to be evaluated when ready. Remember, do not edit the code on lines and
Check It left
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
