Computer Science, asked by wick77133, 6 months ago

How to solve this?
Write a function which will take 2 arguments. They are:

Sentence

position

Your first task is to take these arguments as user input and pass these values to the function parameters.

Your second task is to implement the function and remove the characters at the index number which is divisible by the position (Avoid the index number 0 as it will always be divisible by the position, so no need to remove the index 0 character). Finally, add the removed characters at the end of the new string.

Return the value and then finally, print the new string at the function call.

Input:
"I love programming."
3
Function call:
function_name("I love programming.", 3)
Output:
I lveprgrmmngo oai.​

Answers

Answered by lalitanegi1987
0

Answer:

How to solve this?

Write a function which will take 2 arguments. They are:

Sentence

position

Your first task is to take these arguments as user input and pass these values to the function parameters.

Your second task is to implement the function and remove the characters at the index number which is divisible by the position (Avoid the index number 0 as it will always be divisible by the position, so no need to remove the index 0 character). Finally, add the removed characters at the end of the new string.

Return the value and then finally, print the new string at the function call.

Input:

"I love programming."

3

Function call:

function_name("I love programming.", 3)

Output:

I lveprgrmmngo oai.

Answered by anantrajusharma
0

Answer:

Post it for 50 points or alse no one will answer it bro

Similar questions