Just a quick question, i've wrote a piece of code that analyses a sentence that contains several words without punctuation. When a word in that sentence is input, the program identifies all of the position the word occurs in the sentence. In order to do this i used variable.split(' '). My question is what data type is .split(' '), i am using python. Any help would be appreciated.
Data types
Data types
|
Quote:My question is what data type is .split(' '), i am using python. Any help would be appreciated. It's not data type but a string method,can also be called build function. The string methods is used on datatype str(string). >>> s = 'hello world' >>> type(s) <class 'str'> >>> s.split() ['hello', 'world'] >>> help(s.split) Help on built-in function split: split(...) method of builtins.str instance S.split(sep=None, maxsplit=-1) -> list of strings Return a list of the words in S, using sep as the delimiter string. If maxsplit is given, at most maxsplit splits are done. If sep is not specified or is None, any whitespace string is a separator and empty strings are removed from the result.
Nov-04-2016, 03:39 AM
i suggest split(None)
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American. |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
How to extract two data types from a text file and store them as two separate lists | banf | 1 | 4,081 |
Jan-16-2017, 09:52 PM Last Post: Larz60+ |
Users browsing this thread: 1 Guest(s)