Python string methods is a collection of in-built Python functions that operates on strings.
Note: Every string method in Python does not change the original string instead returns a new string with the changed attributes.
Python string is a sequence of Unicode characters that is enclosed in quotation marks. In this article, we will discuss the in-built string functions i.e. the functions provided by Python to operate on strings.
Case Changing of Python String Methods
The below Python functions are used to change the case of the strings. Let’s look at some Python string methods with examples:
- lower(): Converts all uppercase characters in a string into lowercase
- upper(): Converts all lowercase characters in a string into uppercase
- title(): Convert string to title case
- swapcase(): Swap the cases of all characters in a string
- capitalize(): Convert the first character of a string to uppercase
Example: Changing the case of Python String Methods
Python
# Python3 program to show the
# working of upper() function
text = 'geeKs For geEkS'
# upper() function to convert
# string to upper case
print("\nConverted String:")
print(text.upper())
# lower() function to convert
# string to lower case
print("\nConverted String:")
print(text.lower())
# converts the first character to
# upper case and rest to lower case
print("\nConverted String:")
print(text.title())
# swaps the case of all characters in the string
# upper case character to lowercase and viceversa
print("\nConverted String:")
print(text.swapcase())
# convert the first character of a string to uppercase
print("\nConverted String:")
print(text.capitalize())
# original string never changes
print("\nOriginal String")
print(text)
OutputConverted String:
GEEKS FOR GEEKS
Converted String:
geeks for geeks
Converted String:
Geeks For Geeks
Converted String:
GEEkS fOR GEeKs
Original String
geeKs For geEkS
Time complexity: O(n) where n is the length of the string ‘text’
Auxiliary space: O(1)
List of String Methods in Python
Here is the list of in-built Python string methods, that you can use to perform actions on string:
Function Name | Description |
---|
capitalize() | Converts the first character of the string to a capital (uppercase) letter |
casefold() | Implements caseless string matching |
center() | Pad the string with the specified character. |
count() | Returns the number of occurrences of a substring in the string. |
encode() | Encodes strings with the specified encoded scheme |
endswith() | Returns “True” if a string ends with the given suffix |
expandtabs() | Specifies the amount of space to be substituted with the “\t” symbol in the string |
find() | Returns the lowest index of the substring if it is found |
format() | Formats the string for printing it to console |
format_map() | Formats specified values in a string using a dictionary |
index() | Returns the position of the first occurrence of a substring in a string |
isalnum() | Checks whether all the characters in a given string is alphanumeric or not |
isalpha() | Returns “True” if all characters in the string are alphabets |
isdecimal() | Returns true if all characters in a string are decimal |
isdigit() | Returns “True” if all characters in the string are digits |
isidentifier() | Check whether a string is a valid identifier or not |
islower() | Checks if all characters in the string are lowercase |
isnumeric() | Returns “True” if all characters in the string are numeric characters |
isprintable() | Returns “True” if all characters in the string are printable or the string is empty |
isspace() | Returns “True” if all characters in the string are whitespace characters |
istitle() | Returns “True” if the string is a title cased string |
isupper() | Checks if all characters in the string are uppercase |
join() | Returns a concatenated String |
ljust() | Left aligns the string according to the width specified |
lower() | Converts all uppercase characters in a string into lowercase |
lstrip() | Returns the string with leading characters removed |
maketrans() | Returns a translation table |
partition() | Splits the string at the first occurrence of the separator |
replace() | Replaces all occurrences of a substring with another substring |
rfind() | Returns the highest index of the substring |
rindex() | Returns the highest index of the substring inside the string |
rjust() | Right aligns the string according to the width specified |
rpartition() | Split the given string into three parts |
rsplit() | Split the string from the right by the specified separator |
rstrip() | Removes trailing characters |
splitlines() | Split the lines at line boundaries |
startswith() | Returns “True” if a string starts with the given prefix |
strip() | Returns the string with both leading and trailing characters |
swapcase() | Converts all uppercase characters to lowercase and vice versa |
title() | Convert string to title case |
translate() | Modify string according to given translation mappings |
upper() | Converts all lowercase characters in a string into uppercase |
zfill() | Returns a copy of the string with ‘0’ characters padded to the left side of the string |
Note: For more information about Python Strings, refer to Python String Tutorial.
Python String Methods – FAQs
What Are the Common String Methods in Python?
Python provides a variety of string methods for manipulating and working with strings. Some of the most common string methods include:
upper()
: Converts all characters in a string to uppercase.lower()
: Converts all characters in a string to lowercase.find(substring)
: Returns the lowest index in the string where the substring is found.strip()
: Removes any leading and trailing characters (space is the default).replace(old, new)
: Replaces occurrences of a substring within the string.split(delimiter)
: Splits the string at the specified delimiter and returns a list of substrings.join(iterable)
: Concatenates elements of an iterable with a specified separator.startswith(prefix)
: Checks if the string starts with the specified prefix.endswith(suffix)
: Checks if the string ends with the specified suffix.
How to Find a Substring in Python?
To find a substring in a string, you can use the find()
method. It returns the lowest index of the substring if it is found. If the substring is not found, it returns -1
.
Example:
text = "Hello, World!"
index = text.find("World")
print(index) # Output: 7
# If the substring is not found
index = text.find("Python")
print(index) # Output: -1
How to Convert a String to Lower Case in Python?
You can convert all characters in a string to lowercase using the lower()
method.
Example:
text = "Hello, World!"
lowercase_text = text.lower()
print(lowercase_text) # Output: hello, world!
What is the strip()
Method Used for in Python?
The strip()
method is used to remove leading and trailing characters from a string. By default, it removes whitespace, but you can specify a different character or set of characters to remove.
Example:
text = " Hello, World! "
stripped_text = text.strip()
print(stripped_text) # Output: "Hello, World!"
# Removing specific characters
text = "###Hello, World!###"
stripped_text = text.strip("#")
print(stripped_text) # Output: "Hello, World!"
How to Replace Characters in a String in Python?
To replace characters or substrings in a string, you can use the replace()
method. It replaces all occurrences of the specified substring with another substring.
Example:
text = "Hello, World!"
replaced_text = text.replace("World", "Python")
print(replaced_text) # Output: Hello, Python!
# Replacing characters
text = "banana"
replaced_text = text.replace("a", "o")
print(replaced_text) # Output: bonono
Similar Reads
Python String Methods
Python string methods is a collection of in-built Python functions that operates on strings. Note: Every string method in Python does not change the original string instead returns a new string with the changed attributes. Python string is a sequence of Unicode characters that is enclosed in quotati
6 min read
String capitalize() Method in Python
The capitalize() method in Python is used to change the first letter of a string to uppercase and make all other letters lowercase. It is especially useful when we want to ensure that text follows title-like capitalization, where only the first letter is capitalized. Let's start with a simple exampl
2 min read
Python String casefold() Method
Python String casefold() method is used to convert string to lowercase. It is similar to the Python lower() string method, but the case removes all the case distinctions present in a string. Python String casefold() Method Syntax Syntax: string.casefold() Parameters: The casefold() method doesn't ta
1 min read
Python String center() Method
center() method in Python is a simple and efficient way to center-align strings within a given width. By default, it uses spaces to fill the extra space but can also be customized to use any character we want. Example:[GFGTABS] Python # Center the string 'hello' within a width of 20 s1 =
2 min read
Python String count() Method
The count() method in Python returns the number of times a specified substring appears in a string. It is commonly used in string analysis to quickly check how often certain characters or words appear. Let's start with a simple example of using count(). [GFGTABS] Python s = "hello world" r
2 min read
Python - Strings encode() method
String encode() method in Python is used to convert a string into bytes using a specified encoding format. This method is beneficial when working with data that needs to be stored or transmitted in a specific encoding format, such as UTF-8, ASCII, or others. Let's start with a simple example to unde
3 min read
Python String endswith() Method
The endswith() method is a tool in Python for checking if a string ends with a particular substring. It can handle simple checks, multiple possible endings and specific ranges within the string. This method helps us make our code cleaner and more efficient, whether we're checking for file extensions
3 min read
expandtabs() method in Python
expandtabs() method in Python is used to replace all tab characters (\t) in a string with spaces. This method allows for customizable spacing, as we can specify the number of spaces for each tab. It is especially useful when formatting text for better readability or alignment. Let's understand with
3 min read
Python String find() Method
In this article, weâll explore how to use Pythonâs find() method effectively to find a substring within a string. Let's begin with a simple example to find a substring "GeekforGeeks" in a string. [GFGTABS] Python s = "Welcome to GeekforGeeks!" index = s.find("GeekforGeeks") print
2 min read
Python String format() Method
format() method in Python is a tool used to create formatted strings. By embedding variables or values into placeholders within a template string, we can construct dynamic, well-organized output. It replaces the outdated % formatting method, making string interpolation more readable and efficient. E
9 min read