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

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758199878, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/languages/Python/types/string/split-rsplit(66): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78