slice a string in python code example

Example 1: python slice string

name = "dx4iot"
print(name[0:]) #output: dx4iot
print(name[0:3]) #output: dx4
#==== reverse a string ====#
print(name[::-1]) #output: toi4xd
print(name[0:6:2]) #output: d4o
print(name[-4:-1]) #output: 4io

Example 2: python string slicing

my_string = "Hey, This is a sample text"
print(my_string[2:]) #prints y, This is a sample text
print(my_string[2:7]) #prints y, Th excluding the last index
print(my_string[2::2]) #prints y hsi  apetx
print(my_string[::-1]) #reverses the string => txet elpmas a si sihT ,yeH

Example 3: string slicing in python 3 arguments

#[start:end:step]
>>> range(10)[::2]
[0, 2, 4, 6, 8]

Example 4: how to slice a string in python

a = 'hello'
print(a[1:2])

Example 5: Python - Slicing Strings

b = "Hello, World!"
print(b[2:5])