Home /
Expert Answers /
Computer Science /
problem-1-write-a-python-code-to-print-all-possible-3-letter-combination-of-vowels-using-nested-f-pa814
(Solved):
Problem 1. Write a python code to print all possible 3 letter combination of vowels using nested f ...
Problem 1. Write a python code to print all possible 3 letter combination of vowels using nested for loops. It is important to use nested for loops. No points will be awarded if you don't use nested for loop. Example (Order of output doesn't matter). In total you should see 125 lines. You are given a template (download here ?) and you will write the code in the area marked for you. aaa aae aai aao aau aea aee : :
# list of vowels vowels=["a","e","i","o","u"] # nested loop to print the possible 3 letter combination of vowels # for 3 letter combination 3 nested loop