Question: message = Can you still understand this message? vowels = [ a , e , i , o

message = "Can you still understand this message?"
vowels =["a","e","i","o","u"]
i =0
new_message =""
while i < len(message):
letter = message[i]
j =0
is_vowel = False
# check if letter is a vowel
while j < len(vowels):
if letter == vowels[j]:
is_vowel = True
break # which line number do i go to?
j +=1
i +=1
if is_vowel:
continue # which line number do i go to?
# we reach here if letter was not a vowel
new_message += letter
print(new_message) make a flowchart
help me draw a flowchart

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!