Answers for "how to check if something is a list python"

2

python type == list

if isinstance(object, list):
       ## DO what you want
Posted by: Guest on April-24-2020

Code answers related to "how to check if something is a list python"

Python Answers by Framework

Browse Popular Code Answers by Language