This article mainly introduces the use of the split method in python. The example analyzes the functions and related usage skills of the split method, which is of great practical value, for more information about how to use the split method in python, see the example in this article. Share it with you for your reference. The specific analysis is as follows:
Split is a very important string method. it is the inverse method of join, used to split strings into sequences.
>>> '1 + 2 + 3 + 4 + 5 '. split ('+') ['1', '2', '3', '4', '5']> 'usr/bin/env '. split ('/') ['usr', 'bin', 'env'] >>> 'usr/bin/env '. split ('/') ['usr', 'bin', 'env']> '/usr/bin/env '. split ('/') ['', 'usr', 'bin', 'env']> 'using the default '. split () ['using', ''The, 'default']
If no separator is provided, the program uses all spaces as separators.
I hope this article will help you with Python programming.