Answers for "swap case python"

4

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
16

swapping in python

x = 5
y = 10

x, y = y, x
print("x =", x)
print("y =", y)
Posted by: Guest on May-30-2020
9

code to swap in python

a=5
b=10
a,b=b,a  #swapped
Posted by: Guest on May-13-2020
2

swapcase

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

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
0

swap case python

t = "Mr.Brown"
nt = t.swapcase()
print(nt)
Posted by: Guest on July-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language