python is array code example
Example 1: python is array
isinstance([0, 10, 20, 30], list) # True
isinstance(50, list) # False
Example 2: python array
array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Example 3: python arrays
arr = [1,"two",3.0,"four",5]