String Operations in PythonApr 9, 20231 min readUpdated: Apr 19, 2023Some 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 .
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 .