Advertisement
Guest User

illustration of 0xFFFOO not valid attribute name

a guest
Jun 16th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. >>> a = object()
  2. >>> a.0xaaa
  3. File "<stdin>", line 1
  4. a.0xaaa
  5. ^
  6. SyntaxError: invalid syntax
  7. >>> a.xaa
  8. Traceback (most recent call last):
  9. File "<stdin>", line 1, in <module>
  10. AttributeError: 'object' object has no attribute 'xaa'
  11. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement