In this example, you will learn to capitalize the first character of a string.
To understand this example, you should have the knowledge of the following Python programming topics:
- Python Strings
- Python String upper()
- Python String capitalize()
Two strings are said to be anagram if we can form one string by arranging the characters of another string. For example, Race and Care. Here, we can form Race by arranging the characters of Care.
1. Example 1: Using list slicing
my_string = "programiz is Lit" print(my_string[0].upper() + my_string[1:])
Output
Programiz is Lit
In the above example, my_string[0] selects the first character and upper() converts it to uppercase. Likewise, my_string[1:] selects the remaining characters as they are. Finally they are concatenated using +.
2. Example 2: Using inbuilt method capitalize()
my_string = "programiz is Lit" cap_string = my_string.capitalize() print(cap_string)
Output
Programiz is lit
Note: capitalize() changes the first character to uppercase; however, changes all other characters to lowercase.
Related posts:
Python Program to Solve Quadratic Equation
Python repr()
Python bin()
Python Set issubset()
Generate a String
Adding a Newline Character to a String in Java
Python Tuple index()
Python String startswith()
Python Program to Compute all the Permutation of the String
Python String split()
Python Input, Output and Import
Python Dictionary pop()
Python String casefold()
Python Program to Find ASCII Value of Character
Python Program to Display Calendar
Python List copy()
Python print()
Python Sets
Python Program to Reverse a Number
Python Dictionary values()
Python Program to Delete an Element From a Dictionary
Python dict()
Python Global, Local and Nonlocal variables
Python Program to Slice Lists
Python Program to Catch Multiple Exceptions in One Line
Python Program to Print Output Without a Newline
Python Program to Split a List Into Evenly Sized Chunks
Python tuple()
Python Function Arguments
Python Program to Find the Square Root
Python Tuple
Python String isdecimal()