EN
Python - remove prefix from string
0
points
In this article, we would like to show you how to remove prefix from the string in Python.
Quick solution:
text = "ABC"
text = text.removeprefix("A")
print("after: ", text) # BC
Practical example
In this example, we use removeprefix()
method to remove prefix substring from the string.
text = "ABC"
print("String before:", text) # ABC
text = text.removeprefix("A")
print("String after: ", text) # BC
Output:
String before: ABC
String after: BC