Table of Contents
In Python, the capitalize() method converts first character of a string to uppercase letter and lowercases all other characters, if any.
The syntax of capitalize() is:
string.capitalize()
1. capitalize() Parameter
The capitalize()function doesn’t take any parameter.
2. Return Value from capitalize()
The capitalize() function returns a string with the first letter capitalized and all other characters lowercased. It doesn’t modify the original string.
3. Example 1: Capitalize a Sentence
string = "python is AWesome."
capitalized_string = string.capitalize()
print('Old String: ', string)
print('Capitalized String:', capitalized_string)
Output
Old String: python is AWesome Capitalized String: Python is awesome
4. Example 2: Non-alphabetic First Character
string = "+ is an operator."
new_string = string.capitalize()
print('Old String:', string)
print('New String:', new_string)
Output
Old String: + is an operator. New String: + is an operator.
Related posts:
Python Program to Find Armstrong Number in an Interval
Python frozenset()
Python Program to Concatenate Two Lists
Building Chatbots with Python Using Natural Language Processing and Machine Learning - Sumit Raj
Python strptime()
Python Program to Create Pyramid Patterns
Python Program to Calculate the Area of a Triangle
Python pow()
Python Modules
Python Program to Reverse a Number
Java – String to Reader
Machine Learning Mastery with Python - Understand your data, create accurate models and work project...
Python super()
Python reversed()
Python next()
Python *args and **kwargs
Python String lower()
Python String islower()
Convert char to String in Java
Python all()
Python Program to Illustrate Different Set Operations
Python bytes()
Statistical Methods for Machine Learning - Disconver how to Transform data into Knowledge with Pytho...
Encode a String to UTF-8 in Java
Python sorted()
Python Program to Display Calendar
Python Program to Transpose a Matrix
Python Dictionary get()
Python Program Read a File Line by Line Into a List
Python sleep()
Python Set add()
Python Data Structures and Algorithms - Benjamin Baka