Answer to Question #189945 in Python for FORTUNE AIDOO

Question #189945

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.

2. Give at least three examples that show different features of string slices. Describe the feature illustrated by each example. Invent your own examples. Do not copy them for the textbook or any other source.

1
Expert's answer
2021-05-09T11:49:52-0400
# Question 1
prefixes = 'JKLMNOPQ'
suffix = 'ack'

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

# Question 2

# string_object[start_position:end_position:step]
# -> 1 just set the step
print(prefixes[::2]) # -> JLNP
print(prefixes[::-2]) # -> QOMK
print(prefixes[::-1]) # -> QPONMLKJ
# Just a slice
print(prefixes[:3]) # -> JKL
print(prefixes[2:4]) # -> LM
# Slice a string without specific characters
new_prefixes = ''
specific = 'JMP'
for elem in prefixes:
    if elem not in specific:
        new_prefixes += elem
print(new_prefixes)

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