TheDeveloperBlog.com

Home | Contact Us

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

Python String | ljust() method with Examples

Python String ljust() 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 ljust() Method

Python ljust() method left justify the string and fill the remaining spaces with fillchars. This method returns a new string justified left and filled with fillchars.

Signature

ljust(width[, fillchar])

Parameters

  • width : width of the given string.
  • fillchar : characters to fill the remaining space in the string. It is optional.

Return

It returns a left justified string.

Let's see some examples of ljust() method to understand it's functionalities.

Python String ljust() Method Example 1

# Python ljust() method example
# Variable declaration
str = 'TheDeveloperBlog'
# Calling function
str = str.ljust(20)
# Displaying result
print(str)

Output:

J a v a t p o i n t

Python String ljust() Method Example 2

# Python ljust() method example
# Variable declaration
str = 'TheDeveloperBlog'
# Calling function
str = str.ljust(15,"$")
# Displaying result
print(str)

Output:

J a v a t p o i n t $ $ $ $ $

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