Answer to Question #126615 in Python for Ola Unwana

Question #126615
. 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.
1
Expert's answer
2020-07-21T13:34:02-0400
prefixes = 'JKLMNOPQ'
suffix = 'ack'

for letter in prefixes:
  if letter in 'QO':
    print(letter + 'u' + suffix)
  else:
    print(letter + suffix)

Output:

Jack

Kack

Lack

Mack

Nack

Ouack

Pack

Quack


Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS