Contact: aviboots(AT)netvision.net.il
41,199 questions
53,699 answers
573 users
s = "java python" chars = ('g', 'y', 'n') if s.endswith(chars): print("yes") else: print("no") ''' run: yes '''