The Wayback Machine - https://web.archive.org/web/20241127030942/https://www.geeksforgeeks.org/python-string-upper/
Open In App

Python String upper() Method

Last Updated : 15 Nov, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report
News Follow

The upper() is a method of string objects in Python. It creates a new string with all lowercase letters changed to uppercase. This method does not change the original string instead it simply returns a new one.

Python
s = "hello, world!"
res = s.upper()
print(res) 

Output
HELLO, WORLD!

Explanation: Here, all lowercase letters have been converted to uppercase.

Syntax of upper() method

string.upper()

Parameters

  • The upper() method does not take any parameters.

Return Type

  • This method returns a new string in which all lowercase characters in the original string are converted to uppercase. If the original string has no lowercase letters then it returns the string unchanged.

Example of upper() method

Let’s take an example to see how upper() method works on a string that includes non-alphabetic characters and mixed cases.

Python
s = "hello123!@# WorlD"
res = s.upper()
print(res) 

Output
HELLO123!@# WORLD

Explanation: Here, numbers and special characters remain unchanged while the letters are converted to uppercase.

Practical applications of upper()

The upper() method is very useful in many scenarios such as making case-insensitive comparisons between strings.

Python
s1 = "Hello"
s2 = "hello"

if s1.upper() == s2.upper():
  print("The strings are equal.")
else:
  print("The strings are not equal.") 

Output
The strings are equal.

Explanation: In this example, we convert both s1 and s2 to uppercase using upper() before comparing them. This approach ensures that the comparison is not affected by case differences.

Related Article:

Frequently Asked Question on upper() Method

What does upper() method return?

The upper() method returns a new string with all lowercase letters converted to uppercase and leaving other characters unchanged.

Does the upper() method modify the original string?

No, upper() method does not modify the original string but it returns a new string instead.

Can the upper() method handle empty strings?

Yes, upper() method can handle empty strings and will return an empty string if called on one.


Previous Article
Next Article

Similar Reads

Python String Methods | Set 1 (find, rfind, startwith, endwith, islower, isupper, lower, upper, swapcase & title)
Some of the string basics have been covered in the below articles Strings Part-1 Strings Part-2 The important string methods will be discussed in this article1. find("string", beg, end) :- This function is used to find the position of the substring within a string.It takes 3 arguments, substring , starting index( by default 0) and ending index( by
4 min read
numpy string operations | upper() function
numpy.core.defchararray.upper(arr): function is used to return an array with the elements converted to uppercase. Parameters: arr : [ array_like ] Input array which may be str or unicode. Returns : [ndarray] Output uppercased array of str or unicode, depending on input type. Code #1: # Python Program explaining # numpy.char.upper() function import
1 min read
Python | Pandas Series.str.lower(), upper() and title()
Python is a great language for data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages, making importing and analyzing data much easier. Python has some inbuilt methods to convert a string into a lower, upper, or Camel case. But these methods don't work on lists and other multi-st
4 min read
PyQt5 QDial - Setting Upper Bound
In this article we will see how we can set the upper bound of QDial. Upper bound means the highest value QDial can handle by default the maximum value is 99 although we can change it any time. With the upper bound we can make sure the number above the upper bound can be assigned. Setting upper bound will not affect the movement of the Qdial it will
2 min read
PyQt5 QDial - Getting Upper Bound
In this article we will see how we can get the upper bound of QDial. Upper bound means the highest value QDial can handle by default the maximum value is 99 although we can change it any time with the help of setMaximum method. With the upper bound we can make sure the number above the upper bound can be assigned. Setting upper bound will not effec
2 min read
Pandas - Convert the first and last character of each word to upper case in a series
In python, if we wish to convert only the first character of every word to uppercase, we can use the capitalize() method. Or we can take just the first character of the string and change it to uppercase using the upper() method. So, to convert the first and last character of each word to upper case in a series we will be using a similar approach. F
2 min read
Class Method vs Static Method vs Instance Method in Python
Three important types of methods in Python are class methods, static methods, and instance methods. Each serves a distinct purpose and contributes to the overall flexibility and functionality of object-oriented programming in Python. In this article, we will see the difference between class method, static method, and instance method with the help o
5 min read
String slicing in Python to check if a string can become empty by recursive deletion
Given a string “str” and another string “sub_str”. We are allowed to delete “sub_str” from “str” any number of times. It is also given that the “sub_str” appears only once at a time. The task is to find if “str” can become empty by removing “sub_str” again and again. Examples: Input : str = "GEEGEEKSKS", sub_str = "GEEKS" Output : Yes Explanation :
2 min read
String slicing in Python to Rotate a String
Given a string of size n, write functions to perform following operations on string. Left (Or anticlockwise) rotate the given string by d elements (where d <= n).Right (Or clockwise) rotate the given string by d elements (where d <= n).Examples: Input : s = "GeeksforGeeks" d = 2Output : Left Rotation : "eksforGeeksGe" Right Rotation : "ksGeek
3 min read
Python | Sorting string using order defined by another string
Given two strings (of lowercase letters), a pattern and a string. The task is to sort string according to the order defined by pattern and return the reverse of it. It may be assumed that pattern has all characters of the string and all characters in pattern appear only once. Examples: Input : pat = "asbcklfdmegnot", str = "eksge" Output : str = "g
2 min read
String Alignment in Python f-string
Text Alignment in Python is useful for printing out clean formatted output. Some times the data to be printed varies in length which makes it look messy when printed. By using String Alignment the output string can be aligned by defining the alignment as left, right or center and also defining space (width) to reserve for the string. Approach : We
2 min read
String to Int and Int to String in Python
Python defines type conversion functions to directly convert one data type to another. This article is aimed at providing the information about converting a string to int and int to string. Converting a string to an int If we want to convert a number that is represented in the string to int, we have to use the int() function. This function is used
2 min read
Pad or fill a string by a variable in Python using f-string
f-string stands for formatted string. It had come up by Python Version 3.6 and rapidly used to do easy formatting on strings. F-string is a string literal having syntax starts with f and followed by {}. That placeholder used for holding variable, that will be changed upon the variable names and their values respectively. There are already strings f
4 min read
Convert Unicode String to a Byte String in Python
Python is a versatile programming language known for its simplicity and readability. Unicode support is a crucial aspect of Python, allowing developers to handle characters from various scripts and languages. However, there are instances where you might need to convert a Unicode string to a regular string. In this article, we will explore five diff
2 min read
Python String Formatting - How to format String?
String formatting allows you to create dynamic strings by combining variables and values. In this article, we will discuss about 5 ways to format a string. You will learn different methods of string formatting with examples for better understanding. Let's look at them now! How to Format Strings in PythonThere are five different ways to perform stri
10 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 take any parameters. Return value: Returns the case
1 min read
Python String isspace() Method
Python String isspace() method returns “True” if all characters in the string are whitespace characters, Otherwise, It returns “False”. This function is used to check if the argument contains all whitespace characters, such as: ‘ ‘ – Space‘\t’ – Horizontal tab‘\n’ – Newline‘\v’ – Vertical tab‘\f’ – Feed‘\r’ – Carriage returnPython String isspace()
2 min read
Python String isprintable() Method
Python String isprintable() is a built-in method used for string handling. The isprintable() method returns "True" if all characters in the string are printable or the string is empty, Otherwise, It returns "False". This function is used to check if the argument contains any printable characters such as: Digits ( 0123456789 )Uppercase letters ( ABC
3 min read
Python String isnumeric() Method
The isnumeric() method is a built-in method in Python that belongs to the string class. It is used to determine whether the string consists of numeric characters or not. It returns a Boolean value. If all characters in the string are numeric and it is not empty, it returns “True” If all characters in the string are numeric characters, otherwise ret
3 min read
Python String splitlines() Method
Python String splitlines() method is used to split the lines at line boundaries. The function returns a list of lines in the string, including the line break(optional). Syntax: string.splitlines([keepends]) Parameters: keepends (optional): When set to True line breaks are included in the resulting list. This can be a number, specifying the position
2 min read
Python String center() Method
Python String center() method creates and returns a new string that is padded with the specified character. Syntax: string.center(length[, fillchar]) Parameters: length: length of the string after padding with the characters.fillchar: (optional) characters which need to be padded. If it's not provided, space is taken as the default argument. Return
2 min read
Python String istitle() Method
Python String istitle() Method is a built-in string function that returns True if all the words in the string are title cased, otherwise returns False. Python String istitle() Method Syntax Syntax: string.istitle() Returns: True if the string is a title-cased string otherwise returns False. Python String istitle() Method Example C/C++ Code string =
2 min read
Python string isdecimal() Method
Python String isdecimal() function returns true if all characters in a string are decimal, else it returns False. In this article, we will explore further the isdecimal() method, understand its functionality, and explore its practical applications in Python programming. Python String isdecimal() SyntaxSyntax: string_name.isdecimal(), string_name is
2 min read
Python string swapcase() Method
Python String swapcase() method converts all uppercase characters to lowercase and vice versa of the given string and returns it. Syntax: string_name.swapcase() Parameter: The swapcase() method does not take any parameter. Return Value: The swapcase() method returns a string with all the cases changed. Example Below is the Python implementation of
1 min read
Python String partition() Method
Python String partition() method splits the string at the first occurrence of the separator and returns a tuple containing the part before the separator, the separator, and the part after the separator. Here, the separator is a string that is given as the argument. Example: C/C++ Code str = "I love Geeks for geeks" print(str.partition(
3 min read
Python String rindex() Method
Python String rindex() method returns the highest index of the substring inside the string if the substring is found. Otherwise, it raises ValueError. Python String index() Method Syntax Syntax: str.rindex(sub, start, end) Parameters: sub : It’s the substring which needs to be searched in the given string.start : Starting position where sub is need
2 min read
Python String isidentifier() Method
Python String isidentifier() method is used to check whether a string is a valid identifier or not. The method returns True if the string is a valid identifier, else returns False. Python String isidentifier() method Syntax Syntax: string.isidentifier() Parameters: The method does not take any parameters Return Value: The method can return one of t
2 min read
Python String rsplit() Method
Python String rsplit() method returns a list of strings after breaking the given string from the right side by the specified separator. Python String rsplit() Method Syntax: Syntax: str.rsplit(separator, maxsplit) Parameters: separator: The is a delimiter. The string splits at this specified separator starting from the right side. If not provided t
2 min read
Python String rfind() Method
Python String rfind() method returns the rightmost index of the substring if found in the given string. If not found then it returns -1. Python String rfind() Method Syntax Syntax: str.rfind(sub, start, end) Parameters: sub: It’s the substring that needs to be searched in the given string. start: Starting position where the sub needs to be checked
3 min read
Python String rpartition() Method
Python String rpartition() Method split the given string into three parts. rpartition() starts looking for separator from the right side, till the separator is found and return a tuple which contains part of the string before separator, the separator and the part after the separator. Python String rpartition() Method Syntax Syntax : string.rpartiti
2 min read
Practice Tags :
three90RightbarBannerImg