How to traverse a string from the end in Python

2 Answers

0 votes
def traverse_string_from_the_end(s):
    i = len(s) - 1
    
    while i >= 0:
        print(s[i], end="")
        i -= 1


s = "python java c c++"

traverse_string_from_the_end(s) 



'''
run:

++c c avaj nohtyp

'''

 



answered Aug 16, 2024 by avibootz
0 votes
s = "python java c c++"
 
for ch in reversed(s):
     print(ch, end="")


 
'''
run:
 
++c c avaj nohtyp
 
'''

 



answered Aug 16, 2024 by avibootz
...