SyntaxFix
Write A Post
Hire A Developer
Questions
You can do that using type():
type()
>>> a = [] >>> type(a) <type 'list'> >>> f = () >>> type(f) <type 'tuple'>