0
What is the purpose of .read() .strip() .split()
4 Answers
+ 3
read() reads bytes from a file object
strip() removes white spaces from the end and beginning equal to trim() method in some languages
split() returns a list of words splitted by the given parameter.
+ 2
If you make know we which language you are talking about ...
+ 1
https://docs.python.org/2/library/string.html
.read() isnt a string method