Question 3: ----- Write a function replace_head_tail that takes a string strl and replaces the first X and last Y characters of the string and returns the resulting string. For example, replace_head_tail("corona virus", 4, 3) returns "rusna vicoro". You can assume that the string will always contain at least X+Y characters. def replace_head_tail (stri, X, Y) : # Remove this line before you answer this question. If you will NOT answer # this question, then do NOT remove this line. return

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter9: Completing The Basics
Section9.4: Character Manipulation Functions
Problem 5E
icon
Related questions
Question
Question 3:
Write a function replace head tail that takes a string stri and replaces the
first X and last Y characters of the string and returns the resulting string.
For example,
replace_head_tail ("corona virus", 4, 3)
returns "rusna vicoro".
You can assume that the string will always contain at least X+Y characters.
def replace_head_tail (stri, X, Y) :
# Remove this line before you answer this question. If you will NOT answer
# this question, then do NOT remove this line.
return
Transcribed Image Text:Question 3: Write a function replace head tail that takes a string stri and replaces the first X and last Y characters of the string and returns the resulting string. For example, replace_head_tail ("corona virus", 4, 3) returns "rusna vicoro". You can assume that the string will always contain at least X+Y characters. def replace_head_tail (stri, X, Y) : # Remove this line before you answer this question. If you will NOT answer # this question, then do NOT remove this line. return
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr