183k views
0 votes
How to change beginning point of a string in python

1 Answer

1 vote

Answer: When you say beginning point I am going to guess that that mean first letter. SO if that was the case then you could to this.

text = "some text"

print(text[0])

Output:

s

User Ashish Banker
by
5.0k points