Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Data types
#1
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.
Reply
#2
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.
Reply
#3
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.
Reply


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 3,448 Jan-16-2017, 09:52 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020