i want it to print every character in the string but from the end to the beginning of the string (inverted),it does not show any syntax error so whats the problem . i tried using print i in range(end,beginning) method but it does not show any output .
but it does not say its a syntax error or anything
s="John000Doe000123"
for i in range(len(s),0) :
print (s[i])
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…