What will be assigned to s_string after the execution of the following code?

What will be assigned to s_string after the execution of the following code?


special = '1357 Country Ln.'


s_string = special[4: ]


Answer: 'Country Ln.'


Learn More :