Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

printing characters of string from the end to the beginning using range in python

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])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
for c in s[::-1]:
    print(c)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...