Answers for "check if python variable is string"

13

if type is string python

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

python check if variable is string

# python 2
isinstance(s, basestring)

# python 3
isinstance(s, str)
Posted by: Guest on February-23-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language