Advertisement
Guest User

Untitled

a guest
Dec 29th, 2023
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. Python 3.11.6 (main, Nov 14 2023, 09:36:21) [GCC 13.2.1 20230801] on linux
  2. Type "help", "copyright", "credits" or "license" for more information.
  3. >>> "0xAA" + 11
  4. Traceback (most recent call last):
  5.   File "<stdin>", line 1, in <module>
  6. TypeError: can only concatenate str (not "int") to str
  7. >>> 0xAA + 11
  8. 181
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement