How to store number in array in python while taking from the users code example
Example: enter elements in array in python
import array as arr
# Error
a = arr.array('d', [1, 3.5, "Hello"])
import array as arr
# Error
a = arr.array('d', [1, 3.5, "Hello"])