Home / Python Tips Generated By ChatGPT / String Methods: upper(), lower(), title() in Python Modify the case of a string. Source Code name = "john doe" print(name.upper()) print(name.lower()) print(name.title())