Question: PYTHON: Without changing the current code, make the output statement add the prefixes and suffixes together. When it gets to a word like Qack, it
PYTHON:
Without changing the current code, make the output statement add the prefixes and suffixes together. When it gets to a word like "Qack", it needs to output the word "Quack"
def print_ducklings():
""" Generate and Print the duckling's names """
prefixes = "JKLMNOPQ"
suffix = "ack"
for p in prefixes:
print(p + suffix)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
