diff --git a/algorithms/strings/split.py b/algorithms/strings/split.py new file mode 100644 index 000000000..06889d218 --- /dev/null +++ b/algorithms/strings/split.py @@ -0,0 +1,4 @@ +myString = "Hello world" +myList = myString.split() + +print(myList) \ No newline at end of file