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