Julian
0
Q:

get a slice of string in python

a = 'hello'
print(a[1:2])
1
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
0

New to Communities?

Join the community