Your IP is:

54.224.52.210

[More Detail]


Instant Port Checker

IP:[get my ip] Port1:[EL2/PR2/PM3]   [XON NVR] Port2: Port3:

Skip to content

Python: Remove last ‘n’ characters of a string

To remove the last ‘n’ characters of a string

'string'[:-n]

or

stringVariable[:-n]

For example, to remove the last character (n=1)

[sai@c7test ~]$   python
Python 2.7.5 (default, Nov 20 2015, 02:00:19)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 'python'[:-1]
'pytho'
>>>
>>> tmpVar = 'Python'
>>> tmpVar[:-1]
'Pytho'
>>>

 


ItsyourIP.com

Categories: General.

Tags: , , , , ,