Horje
how to change case of string in python Code Example
how to change case of string in python
a = "Hello, World!"
print(a.upper()) 

#Output: HELLO, WORLD!

print(a.lower()) 
##Output:  hello, world!
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




Python

Related
pandas get cvvlaue from antoiher column fom one coluikmnn value Code Example pandas get cvvlaue from antoiher column fom one coluikmnn value Code Example
return max repeated value in list Code Example return max repeated value in list Code Example
saving to csv without the index Code Example saving to csv without the index Code Example
the grandest staircase of them all foobar solution Code Example the grandest staircase of them all foobar solution Code Example
reportlab line thickness Code Example reportlab line thickness Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7