Answer :

timlefen

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

Other Questions