Answers for "check if is a string python"

13

if type is string python

isinstance(s, str)
Posted by: Guest on March-22-2020
0

how to check a string in if statement python

if var == 'stringone' or var == 'stringtwo':
    do_something()
Posted by: Guest on November-24-2020
0

how to check a string in if statement python

if (var is 'stringone') or 'stringtwo':
    dosomething()
Posted by: Guest on November-24-2020

Code answers related to "check if is a string python"

Python Answers by Framework

Browse Popular Code Answers by Language