String Operations in Python
- Metric Coders
- Apr 9, 2023
- 1 min read
Updated: Apr 19, 2023

Some of the string methods include lower, upper and capitalize.
b = "Wow! Champs!"
print(b.upper())
print(b.lower())
print(b.capitalize())
The link to the Github repository is here .