How to create generator function that reverse a string with for loop using yield in Python

1 Answer

0 votes
def reverse_string(s):
    for i in range(len(s) - 1,-1,-1):
        yield s[i]
 

for ch in reverse_string("python"):
     print(ch, end=" ")  



'''
run:
    
n o h t y p 

'''

 



answered May 12, 2019 by avibootz
...