Guest User

Untitled

a guest
Nov 17th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. >>> arr.itemsize
  2. 4
  3. >>> arr.length
  4. Traceback (most recent call last):
  5. File "<stdin>", line 1, in <module>
  6. AttributeError: 'array.array' object has no attribute 'length'
  7. >>> arr.length()
  8. Traceback (most recent call last):
  9. File "<stdin>", line 1, in <module>
  10. AttributeError: 'array.array' object has no attribute 'length'
  11. >>> arr.array_length()
  12. Traceback (most recent call last):
  13. File "<stdin>", line 1, in <module>
  14. AttributeError: 'array.array' object has no attribute 'array_length'
  15. >>> arr.length()
  16. Traceback (most recent call last):
  17. File "<stdin>", line 1, in <module>
  18. AttributeError: 'array.array' object has no attribute 'length'
  19. >>> arr.length
  20. Traceback (most recent call last):
  21. File "<stdin>", line 1, in <module>
  22. AttributeError: 'array.array' object has no attribute 'length'
Add Comment
Please, Sign In to add comment