text ="welcome to PYTHON Tutorial" # capitalizes the first letter in string # and keeps the rest of the string in lowercase captialized_text= text.capitalize() print(captialized_text)