Welcome to the Unit 5 Learning Journal!1. Consider the loop from Section 8.3 of your textbook.prefixes = 'JKLMNOPQ'suffix = 'ack'for letter in prefixes:print(letter + suffix)Put this code into a...


Welcome to the Unit 5 Learning Journal!
1. Consider the loop from Section 8.3 of your textbook.





prefixes = 'JKLMNOPQ'
suffix = 'ack'



for letter in prefixes:
print(letter + suffix)


Put this code into a Python script and run it. Notice that it prints the names "Oack" and "Qack".


Modify the program so that it prints "Ouack" and "Quack" but leaves the other names the same.


Include the modified Python code and the output in your submission.

Oct 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here