Search notes:

Python: str.split() / str.rsplit()

split and rsplit are sort of an «opposite» for join().
#!/usr/bin/python

str="hello world, the famous number is forty-two, is it not?"

print('str.split()')
for word in str.split():
    print('  ' + word)

#  hello
#  world,
#  the
#  famous
#  number
#  is
#  forty-two,
#  is
#  it
#  not?

print("str.split(',')")
for part in str.split(','):
    print('  ' + part)

#  hello world
#   the famous number is forty-two
#   is it not?
Github repository about-python, path: /built-in/types/str/split.py

See also

str

Index