Answers for "python remove string with beginning and end"

2

Remove the First Character From the String in Python Using the Slicing

greeting = "HHello world!"
new_greeting = greeting[1:]
# In here we select greeting string from character 1 to end (except character 0)
print(new_greeting)
#output: Hello world!
Posted by: Guest on November-30-2021
1

remove first character of string python

r = "hello"
r = r[1:]
print(r) # ello
Posted by: Guest on May-06-2021

Code answers related to "python remove string with beginning and end"

Python Answers by Framework

Browse Popular Code Answers by Language