Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
s = "python php java c c++ c#" if s.startswith("python"): print("yes") ''' run: yes '''
s = "python php java c c++ c#" if not s.startswith("java"): print("yes") ''' run: yes '''