Answers for "check if variable is string pyhton"

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 variable is string pyhton"

Python Answers by Framework

Browse Popular Code Answers by Language