You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(Name[-5:4])#[1:5]this is indexing and this one is [-5:2] negative indexing
Story="lost in the labyrinth of my own mind i grapple with unsolved problems yearning for a glimpse of a Brighter future amidst the shadows of the past"
print(Story[0:17])
#String Functions
print(len(Story))
print(Story.endswith("past"))#it says end word is true or false