Answers for "how to slice a string from right in python"

12

get a slice of string in python

string = "something"

slice = string[0:3] # will be "som"
slice = string[0:-3] # will be "someth"
slice = string[3:] # will be "thing"
slice = string[:3] # same as first slice
slice = string[::2] # will be "smtig" -- it goes 2 step each time
Posted by: Guest on December-04-2020

Code answers related to "how to slice a string from right in python"

Python Answers by Framework

Browse Popular Code Answers by Language