Skip to content

Instantly share code, notes, and snippets.

@RaMSFT
Created October 21, 2022 10:57
Show Gist options
  • Save RaMSFT/37e1a501f72fa9715c8f3b49fb02c62e to your computer and use it in GitHub Desktop.
Save RaMSFT/37e1a501f72fa9715c8f3b49fb02c62e to your computer and use it in GitHub Desktop.
def string_to_list(split_str):
result_list = list(split_str)
return result_list
print(string_to_list('Hello This is Python'))
print(string_to_list('Python'))
print(string_to_list('Edabit'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment