TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

Python String | lstrip() method with Examples

Python String lstrip() method with Examples on capitalize(), center(), count(), encode(), find(), format(), index(), join(), lower(), ljust(), isupper(), istitle(), isspace(), isprintable(), isnumeric(), islower() etc.

<< Back to PYTHON

Python String lstrip() Method

Python lstrip() method is used to remove all leading characters from the string. It takes a char type parameter which is optional. If parameter is not provided, it removes all the leading spaces from the string.

Signature

lstrip([chars])

Parameters

chars (optional) : A list of chars

Return

It returns a string.

Let's see some examples of lstrip() method to understand it's functionality

Python String lstrip() Method Example 1

A simple program to understand use of lstrip method. See how it removes leading spaces.

# Python lstrip() method example
# Variable declaration
str =  "  TheDeveloperBlog  "
# Calling function
str2 = str.lstrip()
# Displaying result
print(str)
print(str2)

Output:

	TheDeveloperBlog  
TheDeveloperBlog 

Python String lstrip() Method Example 2

Here, we are adding some special chars to the string and applying lstrip to remove leading chars.

# Python lstrip() method example
# Variable declaration
str =  "$$$$-TheDeveloperBlog-$$$$"
# Calling function
str2 = str.lstrip('$')
# Displaying result
print(str)
print(str2)

Output:

$$$$-TheDeveloperBlog-$$$$
-TheDeveloperBlog-$$$$

Python String lstrip() Method Example 3

# Python lstrip() method example
# Variable declaration
str =  "http://www.TheDeveloperBlog.com"
# Calling function
str2 = str.lstrip('http://w.')
# Displaying result
print(str)
print(str2)

Output:

http://www.TheDeveloperBlog.com
TheDeveloperBlog.com

Next TopicPython Strings




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf