I am new to Python and have a problem with Negative Slicing step. So can anyone explain me Negative Slicing Step and my question is why the below code behaving like this,
var1='1a2b3c4d5e6f7g8h9i'
print('1st result',var1[-2:-10:-1]) #Get output
print('2nd result',var1[-2:-10:1]) #No Output
print('3rd result',var1[2:10:-1]) #No Output