Answers for "how to swap cases in python"

5

converting capital letters to lowercase and viceversa in python

s=input()
new_str=""
for i in range (len(s)):
    if s[i].isupper():
        new_str+=s[i].lower()
    elif s[i].islower():
        new_str+=s[i].upper()
    else:
        new_str+=s[i]
print(new_str)
Posted by: Guest on April-11-2020
2

swapcase

str_swapcase = "what was that about?".swapcase()
print(str_swapcase)
Posted by: Guest on June-27-2020
2

swap variables in python

a = 5
b = 6
# now swp the variables
a, b = b, a
# to swap two variables you need an other string harder than the first one
c = a	# 5
a = b	# 6
b = c	# 5
Posted by: Guest on December-23-2020
0

how to convert uppercase to lowercase and vice versa in python

def swap_string():
	s=input()
	swapped_string=""
	swapped_string+=s.swapcase()
    return swapped_string
Posted by: Guest on May-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language