Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
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 '''