- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to convert lowercase letters in string to uppercase in Python?
You can use the upper() method in Python to convert all lowercase letters in string to uppercase. For example:
>>> 'HellO'.upper() HELLO >>> 'leaning tower of pisa'.upper() 'LEANING TOWER OF PISA'
- Related Articles
- How to convert all uppercase letters in string to lowercase in Python?
- Write a C program to convert uppercase to lowercase letters without using string convert function
- Convert string to lowercase or uppercase in Arduino
- Java program to convert a string to lowercase and uppercase.
- For Hosts Locale how to convert a string to lowercase letters in JavaScript?
- For the Hosts Locale how to convert a string to uppercase letters in JavaScript?
- How to create a vector with lowercase as well as uppercase letters in R?
- How to convert all the records in a MySQL table from uppercase to lowercase?
- How to check whether a string is in lowercase or uppercase in R?
- Golang Program to convert Uppercase to Lowercase characters, using binary operator.
- How to convert the content of the file into uppercase or lowercase?
- Replacing upperCase and LowerCase in a string - JavaScript
- How to convert a string into uppercase in AngularJS?
- Convert a String to Uppercase in C
- How to lowercase the entire string keeping the first letter in uppercase with MySQL?

Advertisements