Contact: aviboots(AT)netvision.net.il
38,907 questions
50,613 answers
573 users
s = 'python java c c++ c#' if (s.startswith('python')): print('Starts with \'python\'') else: print('Not start with \'python\'') ''' run: Starts with 'python' '''