How to Get Last Word from String in Python?
Hello Artisan,
This post is focused on python get last word from string. I would like to share with you python get last word in string. I’m going to show you about how to get last word in string python. We will look at an example of how to get last word from string in python. Follow the below tutorial step of how to get last word in python.
In this example, i will add myString variable with hello string. Then we will use split() function to getting last word from string in python. So, without further ado, let's see simple examples: You can use these examples with python3 (Python 3) version.
Example:
main.py
# Declare String Variable myString = "Hello This is ItSolutionStuff.com" # Getting Last Word from String firstWord = myString.split()[-1] print(firstWord)
Output:
ItSolutionStuff.com
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Convert PDF to Base64 String in Python?
- Python JPEG Image to Base64 String Example
- Python Openpyxl Read Excel File Example
- Python Pandas Read Excel File Multiple Sheets Example
- Python Pandas Create Excel File with Multiple Sheets
- How to Capitalize String in Python?
- Python String Convert to Lowercase Example
- Python String Convert to Uppercase Example
- Python Convert List into String with Commas Example
- How to Convert List into String in Python?
- Python Split String into List of Characters Example
- How to Convert String into List in Python?
- Python Remove Empty String from List Example