How do I get a substring of a string in Python?

前端 未结 13 1907
我寻月下人不归
我寻月下人不归 2020-11-22 00:32

Is there a way to substring a string in Python, to get a new string from the third character to the end of the string?

Maybe like myString[2:end]?

13条回答
  •  既然无缘
    2020-11-22 01:23

    You've got it right there except for "end". It's called slice notation. Your example should read:

    new_sub_string = myString[2:]
    

    If you leave out the second parameter it is implicitly the end of the string.

提交回复
热议问题