EN
Python - remove first 2 characters from string
0 points
In this article, we would like to show you how to remove the first 2 characters from the string in Python.
Quick solution:
xxxxxxxxxx
1
text = 'ABCD'
2
result = text[2:] # removes first 2 characters
3
print(result) # CD
In this example, we use string slicing to remove the first 2
characters from the text
string.
xxxxxxxxxx
1
text = 'ABCD'
2
3
# removes first 2 characters
4
result = text[2:]
5
6
print(result) # CD
Output:
xxxxxxxxxx
1
CD