Question: import introcs # For assert _ equals import funcs # This is what we are testing # Put your code below this line result =

import introcs # For assert_equals
import funcs # This is what we are testing
# Put your code below this line
result = funcs.has_a_vowel('aeiou')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('yam')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('dream')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('dine')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('one')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('two')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('cursive')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('feet')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('goat')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('sun')
introcs.assert_equals(True,result)
# Do not write below this line
print('Module funcs is working correctly'import introcs # For assert_equals
import funcs # This is what we are testing
# Put your code below this line
result = funcs.has_a_vowel('aeiou')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('yam')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('dream')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('dine')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('one')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('two')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('cursive')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('feet')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('goat')
introcs.assert_equals(True,result)
result = funcs.has_a_vowel('sun')
introcs.assert_equals(True,result)
# Do not write below this line
print('Module funcs is working correctly'

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 Databases Questions!