'numpy.ndarray' object has no attribute 'append'
#instead of name_array.append(number) use numpy.append(name_array, number)
#insted of:
a = [1,2,3,4]
a.append(5)
#use:
a = [1,2,3,4]
numpy.append(a, 5)
'numpy.ndarray' object has no attribute 'append'
#instead of name_array.append(number) use numpy.append(name_array, number)
#insted of:
a = [1,2,3,4]
a.append(5)
#use:
a = [1,2,3,4]
numpy.append(a, 5)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us