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