Upper case and lower case in Python
Upper Case
In order to upper case, we use upper() method:
a = "Hello, its time to learn, LearDuty"
print(a.upper())
Output:
HELLO, ITS TIME TO LEARN, LEARDUTY
Lower Case
In order to lower case, we use lower() method:
a = "Hello, its time to learn, LearDuty"
print(a.lower())
Output:
hello, its time to learn, learduty