python 7c spilt a sentence into list of words

Solutions on MaxInterview for python 7c spilt a sentence into list of words by the best coders in the world

showing results for - "python 7c spilt a sentence into list of words"
Pablo
30 Feb 2016
1# Python3 program to Convert single
2# indexed list into multiple indexed list
3  
4def convert(lst):
5    return (lst[0].split())
6  
7# Driver code
8lst =  ["Geeks For geeks"]
9print( convert(lst))
10