Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
s = "Python programming language" if type(s) == str: print("True") else: print("False") ''' run: True '''
s = "Python programming language" if isinstance(s, str): print("True") else: print("False") ''' run: True '''