Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python swapcase() method Example

Python swapcase() method Example
text1 = "pYTHON tUTORIALS"
print(text1.swapcase())

text2 = "HELLO WORLD"
print(text2.swapcase())

text3 = "welcome to itsmycode"
print(text3.swapcase())

text4 ="12345!!!"
print(text4.swapcase())
Comment

How to swapcase of string in python

s = 'KDnuggets'

print(''KDnuggets' as uppercase: {}'.format(s.upper()))
print(''KDnuggets' as lowercase: {}'.format(s.lower()))
print(''KDnuggets' as swapped case: {}'.format(s.swapcase()))


# Output

# 'KDnuggets' as uppercase: KDNUGGETS
# 'KDnuggets' as lowercase: kdnuggets
# 'KDnuggets' as swapped case: kdNUGGETS
Comment

PREVIOUS NEXT
Code Example
Python :: handling files in django 
Python :: run c code in python 
Python :: convert set to list python time complexity method 4 
Python :: Python | Largest, Smallest, Second Largest, Second Smallest in a List 
Python :: Example of inheritance and constructor in subclass 
Python :: Determining Web Address In Django 
Python :: Set Date In Python 
Python :: packing a tuple 
Python :: list of bad words python 
Python :: 0 in python 
Python :: 10 minutes to pandas 
Python :: way to close file python with staement 
Python :: increase tkinter window resolution 
Python :: python find occurance of item 
Python :: Bilgisayardaki mp3 uzantili dosyalari bulma 
Python :: images in pygame 
Python :: _rocketcore pypi 
Python :: python dash bootstrap buttons with icons 
Python :: latex maths to python parser 
Python :: cos2x 
Python :: pandas map 
Python :: changing instance variable python inheritance 
Python :: python Write code that asks users to enter the year they were born. Print out how many years old they will turn in 2019. 
Python :: online image to python text converter 
Python :: python if statement syntax 
Python :: Python Deleting Attributes and Objects 
Python :: tornado cookies authorization 
Python :: pip package dynamic setup.py example 
Python :: python scatter matrix with regression line 
Python :: python get stringvar value 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =