Answers for "check if variable is string value python"

0

python check if variable is string

# python 2
isinstance(s, basestring)

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

python check if variable has value

if x:
  print(x)
else:
  print(x is empty)
Posted by: Guest on June-10-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language