First of all, congratulate yourself you continuing your learning. I really appreciate your efforts. So till now, we have covered a lot of topics and in this blog, we'll discuss Strings in Python. So without further ado, let's start.
What is String?
String is one of the built-in data types used to represent textual data. Strings in Python are created by enclosing a sequence of characters within single quotes ('
) or double quotes ("
).
eg:
# Using single quotes
my_string = 'Hello, Akash!'
# Using double quotes
another_string = "Python is great"
-
Accessing Characters: You can access individual characters in a string using indexing. In Python, indexing starts from 0.
first_char = my_string[0] # 'H'
-
Escape Characters: You can use escape characters to include special characters in a string.
escape_example = 'This is a line\nwith a newline character.'
-
Formatted Strings: Python supports formatted strings, allowing you to embed expressions inside string literals.
name = 'Alice' greeting = f'Hello, {name}!'
Immutable Nature: Strings in Python are immutable, meaning that once a string is created, you cannot modify its contents. You can create a new string with the desired modifications.
# Example of immutability
original_string = "Hello"
modified_string = original_string + ", World!" # Creates a new string
Indexing
Indexing in Python refers to the process of accessing individual elements (characters in the case of strings) within a data structure. In Python, indexing starts at 0, meaning the first element of a sequence is accessed with the index 0, the second with index 1, and so on.
Indexing in Strings:
Let's understand this with an example:
my_string = "Hello, World!"
-
Positive Indexing: Positive indexing starts from the beginning of the sequence. The first character has an index of 0, the second has an index of 1, and so on.
print(my_string[0]) # Output: 'H' print(my_string[7]) # Output: 'W' print(my_string[12]) # Output: '!'
-
Negative Indexing: Negative indexing starts at the end of the sequence. The last character has an index of -1, the second-to-last has an index of -2, and so forth.
print(my_string[-1]) # Output: '!' print(my_string[-3]) # Output: 'd'
Membership Operators:
example_string = "Hello, Akash!"
-
in
Operator: Checks if a value or substring exists in a sequence.
print('A' in example_string) # True
-
not in
Operator: Checks if a value or substring does not exist in a sequence.
print('Z' not in example_string) # True
Common String Functions:
-
len()
Function: Returns the length of a string.
length = len(example_string)
-
upper()
andlower()
Functions: Convert a string to uppercase or lowercase.
upper_case = example_string.upper() lower_case = example_string.lower()
-
count()
Function: Counts occurrences of a substring in the string.
count = example_string.count('l')
-
find()
Function: Finds the index of the first occurrence of a substring.
index = example_string.find('Akash')
-
replace()
Function: Replaces occurrences of a substring with another substring.
new_string = example_string.replace('Hello', 'Hi')
-
startswith()
andendswith()
Functions: Checks if a string starts or ends with a specified substring.
starts = example_string.startswith('Hello') ends = example_string.endswith('Akash!')
-
strip()
Function: Removes leading and trailing whitespaces from a string.
stripped = " Hello, Akash! ".strip()
-
split()
Function: Splits a string into a list based on a specified delimiter.
words = example_string.split(', ')
Questions for your practice
Check if the character 'o' is present in the string "Hello, World!".
Verify if the substring "Akash" is not in the string "Hello, Akash!".
Determine the length of the string "Hello, Akash!".
Convert the string "Hello, Akash!" to lowercase.
Count the occurrences of the letter 'l' in the string "Hello, Akash!".
Find the index of the first occurrence of the substring "Akash" in the string "Hello, Akash!".
Replace the word "Hello" with "Hi" in the string "Hello, Akash!".
Extract the word "Akash" from the string "Hello, Akash!" using slicing.
Use slicing to get the first four characters of the string "Hello, Akash!".
Create a formatted string that includes your name and a greeting. (e.g., "Hi, my name is [your name].")
Write a function to check if a given string is a palindrome (reads the same backward as forward).
Hope you understand what strings are in Python. Since this is a beginner-friendly article I've provided a gist of the content which is enough for anyone to get started. I'll recommend you prefer official Python documentation for more understanding. Happy Coding.
Top comments (0)