how to split text in python
- Last modified: 29 February 2020
- Category: python tutorial
example-1: split text
1 2 3 4 | var = "hello world" #split as list spl = var.split(' ') print(spl) |
output
1 | "['hello', 'world']"
|
example-2
1 2 3 4 | var = "hello/world" #split as list spl = var.split('/') print(spl) |
output
1 | "['hello', 'world']"
|
English today is not an art to be mastered it's just a tool to use to get a result