Answers for "How to remove first n characters from a string in Python middle"

17

how to remove first letter of a string python

s = "hello"
print s[1:]
Posted by: Guest on August-05-2020
16

python string cut first n characters

# string [start:end:step]
string = "freeCodeCamp"
print(string[0:len(string)-1])		# freeCodeCam
print(string[0:5])		            # freeC
print(string[2:6])		            # eeCo
print(string[-1])		            # p
print(string[-5:])		            # eCamp
print(string[1:-4])                 # reeCode
print(string[-5:-2])	            # eCa
print(string[::2])		            # feCdCm
Posted by: Guest on May-13-2021

Code answers related to "How to remove first n characters from a string in Python middle"

Code answers related to "Javascript"

Browse Popular Code Answers by Language