top of page

String Operations in Python

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 .

0 views

Related Posts

How to Install and Run Ollama on macOS

Ollama is a powerful tool that allows you to run large language models locally on your Mac. This guide will walk you through the steps to...

bottom of page