Refer to the question mentioned on this link In Python how will you multiply individual elements of a list with a floating point or integer number?
I use import numpy as np
; then multiply a list with a flaoting number and stored the updated values in the same list. However, the new values are like [[array([ 10.])] .....
Now I want to remove array and use the list with the integer value.