Answers for "test if python variable is a list"

0

python check if list

if isinstance(ini_list1, list):
  print("your object is a list !")
else:
    print("your object is not a list")
Posted by: Guest on December-22-2021

Code answers related to "test if python variable is a list"

Python Answers by Framework

Browse Popular Code Answers by Language