Common String Methods [Python]
course = "Python Programming"
course.upper() # Returns a string uppercase
course.lower() # Converts a string to lowercase
course.title() # Returns a string with the first character
# in uppercase
course.strip() # Removes white spaces from both t...
codingyourself.com1 min read