==>the start
To tell the truth just at the beginning I to strip () and split () These two really do not understand, later on the Internet to check the information to understand.
Maybe people think that these two are very good distinctions, but I was really a bit confused at first, or not quite sure of the usage, so write it down here.
Both of these methods are built-in methods for handling strings .
Look at the picture:
The official explanations give you a look ...
Here are two examples to help understand:
Strip () is the deletion of the specified character at the beginning and end of the string, and is used to remove extra space when the user enters.
The Strip () method returns a string
Split () splits the string (whether it is the beginning, the end, or the middle) by the specified character , and you can customize the number of splits
Split () returns a list.
Next, let's take another example:
<==the End
Python's Strip () and split ()