Python Remove First Character from String Example

By Hardik Savani October 30, 2023 Category : Python

Hello Friends,

This tutorial will provide an example of python remove first character from string. This article will give you a simple example of python remove only first character from string. This article will give you a simple example of how to remove first character from string in python. I would like to show you python delete first character from string. So, let's follow a few steps to create an example of how to delete first character in string python.

In this example, i will add myString variable with hello string. Then we will use key to remove first character from string in python. So, without further ado, let's see simple examples: You can use these examples with python3 (Python 3) version.

Example:

main.py

# Declare String Variable
myString = ":Hello, This is ItSolutionStuff.com"

# Remove First Character from String
rNewString = myString[1:]

print(rNewString)

Output:

Hello, This is ItSolutionStuff.com

I hope it can help you...

Tags :
Shares