slicing string python works 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 - Slicing Strings
b = "Hello, World!"
print(b[2:5])