Languages
[Edit]
EN

Python - remove first n characters from string

0 points
Created by:
Hiba-Tate
488

In this article, we would like to show you how to remove the first n characters from the string in Python.

Quick solution:

text = 'ABCD'
n = 3
result = text[n:]  # removes first n characters
print(result)      # D

 

Practical example using string slicing

In this example, we use string slicing to remove the first n characters from the text string.

text = 'ABCD'
n = 3

# removes first n characters
result = text[n:]

print(result)  # D

Output:

D

Related posts

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - string (popular problems)

Python - remove first n characters from string
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join