
Make use of the split() method to split a string in Python,
By default when you do not pass any argument to the split method, the string is split by whitespace.
Example: Split Python String using whitespace"""
Sprint String in Python
Author: Code2care.org
Date: 03-Apr-2022
Version: 1.0
"""
my_string ="Hello there! Welcome to Python Programming!"
my_string_list = my_string.split()
for str in my_string_list:
print(str)
Output:
Hello
there!
Welcome
to
Python
Programming!
If you want to split a string using other characters like comma, semi-colon, pipe, new-line character or anything else, you can pass that delimited as an argument to the split method,
Example: Split Python String using commamy_string ="Python,Java,PHP,SharePoint"
my_string_list = my_string.split(",")
for str in my_string_list:
print(str)
Example: Split Python String using semi-colon
my_string ="Python;Java;PHP;SharePoint"
my_string_list = my_string.split(";")
for str in my_string_list:
print(str)
Example: Split Python String using new line characters (\r \n \r\n)
my_string ="Welcome\nto\ncode2care"
my_string_list = my_string.split("\n")
for str in my_string_list:
print(str)
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- 5 Ways to Loop a Dictionary in Python - Python
- Java 8 Streams map() with examples - Java
- Generate SHA-256 Hash and Salt in Java Example - Java
- Convert Java Object to XML using Jackson Library - Java
- How to update Cargo (Rust Lang) - Rust
- How to show Machintosh HD icon on Mac Desktop - MacOS
- How to lock Notepad++ tabs? - NotepadPlusPlus
- Fix [Mac Terminal] The operation couldn’t be completed. Unable to locate a Java Runtime. (update for Ventura/Sonoma) - Java