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