Question: Write a recursive function in python where you have to convert a sentence into list of words, for example; 'my name is john' should be
Write a recursive function in python where you have to convert a sentence into list of words, for example; 'my name is john' should be returned as a list [my, name, is, john]
You are not allowed to use any helper functions and no find(). Only one parameter is allowed in the function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
