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

Bilel-A

Enthusiastic Network Engineer specializing in Cisco ACI, passionate about solving challenges. A lifelong learner who loves gaining and sharing knowledge. Profile: https://www.linkedin.com/in/bilel-ameur-71116b2b5
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x