Answer to Question #277865 in Python for solokin

Question #277865

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


2. Give at least three examples that show different features of string slices. Describe the feature illustrated by each example.


1
Expert's answer
2021-12-11T01:58:40-0500
prefixes = 'JKLMNOPQ'
suffix = 'ack'

for prefix in prefixes:
  if prefix not in 'OU':
    print(prefix, suffix, sep='')
  else:
    print(prefix, 'u', suffix, sep='')

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
New on Blog
APPROVED BY CLIENTS