array.fromlist(list)
Append items from the list. This is equivalent to for x in list:
a.append(x)
except that if there is a type error, the array is unchanged.
array.fromlist(list)
Append items from the list. This is equivalent to for x in list:
a.append(x)
except that if there is a type error, the array is unchanged.
Please login to continue.