This repository contains a cheat sheet for commonly used string methods in Python.
Python provides built-in string methods for text manipulation.
capitalize()casefold()center()- ... (and more)
For details and examples, refer to Python documentation or online resources.
string = "hello"
print(string.upper()) # Output: HELLO