Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Python function concat_corresponding( a, b ), which takes two strings, a and b and returns a string where every two-character slice is a
Write a Python function concat_corresponding( a, b ), which takes two strings, a and b and returns a string where every two-character slice is a concatenation of the corresponding elements at the same indices in a and b. You should assume that values in a shorter string are to be taken as empty strings. Examples: >>> print( concat_corresponding( "12345", "6789XYZ" ) ) 162738495XYZ >>> print( concat_corresponding( "12345", "678" ) ) 16273845 >>> print( concat_corresponding( "678", "12345" ) ) 61728345 ?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started