Python String Remove Last n Characters

Published: 28 August 2018
on channel: Softhints - Python, Linux, Pandas
5,168
35

Python String Remove last several letters

https://blog.softhints.com/python-str...

In Python last characters of a string can be removed with indexes like:

Example Remove last n characters

n = 5
'Python is cool'[:-n]
print('Python is cool'[:-n])

Example Remove n-th characters

n = 1
print('Python'[:n] + 'Python'[n+1:])


Example Remove n-th sequence

n = 1
m = 3
print('Python'[:n] + 'Python'[n+m:])


---------------------------------------------------------------------------------------------------------------------------------------------------------------
Code store

https://bitbucket.org/softhints/

Socials

Facebook:   / 435421910242028  
Facebook:   / softhints  
Twitter:   / softwarehints  
Discord:   / discord  


If you really find this channel useful and enjoy the content, you're welcome to support me and this channel with a small donation via PayPal.

PayPal donation https://www.paypal.me/fantasyan


On this page of the site you can watch the video online Python String Remove Last n Characters with a duration of hours minute second in good quality, which was uploaded by the user Softhints - Python, Linux, Pandas 28 August 2018, share the link with friends and acquaintances, this video has already been watched 5,168 times on youtube and it was liked by 35 viewers. Enjoy your viewing!