- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
something like this python code:
if type(var) is list:
# do list thing
elif type(var) is int:
# do int thing
elif type(var) is float:
# do float thing
...
Solved! Go to Solution.