TheDeveloperBlog.com

Home | Contact Us

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

Python String | swapcase() method with Examples

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

Python swapcase() method converts case of the string characters from uppercase to lowercase and vice versa. It does not require any parameter and returns a string after case conversion.

Signature

swapcase()

Parameters

No Parameter

Return

It returns a string.

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

Python String swapcase() Method Example 1

It is a simple example to convert uppercase to lowercase using the swapcase() method.

# Python String swapcase() method
# Declaring variable
str = "HELLO JAVATPOINT"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

Output:

hello TheDeveloperBlog

Python String swapcase() Method Example 2

This example describes conversion from lowercase to uppercase.

# Python String swapcase() method
# Declaring variable
str = "hello TheDeveloperBlog"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

Output:

HELLO JAVATPOINT

Python String swapcase() Method Example 3

If the string is in camelcase, the output of this method also would be in camelcase. All the lowercase will be converted to uppercase and vice versa.

# Python String swapcase() method
# Declaring variable
str = "Hello JavTpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

Output:

hELLO jAVtPOINT

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