Skip to content

Instantly share code, notes, and snippets.

@goyalrohit
Created September 25, 2019 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalrohit/c89e94f234348d3bbd150ca420529b6c to your computer and use it in GitHub Desktop.
Save goyalrohit/c89e94f234348d3bbd150ca420529b6c to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# A custom function to convert string to list
def convertStrToList(myStr):
myList = list(myStr.split(" "))
return myList
# Declaring a string
myStr = "String to List"
print(convertStrToList(myStr))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment