Didactic Byte
-
- Posts: 1
- Joined: Tue Jul 19, 2011 8:15 pm
- Location: Mo-Town
-
- Posts: 1
- Joined: Sun Aug 07, 2011 11:03 am
- Location: New Zealand
-
- Posts: 6
- Joined: Sun Sep 04, 2011 3:50 pm
- Location: 1110.1001.111.101.10010.1001
Use "calc.exe" in Scientific Mode and input number then set numeration base to Hex.
=> E9
Manual solution:
=> E9
Python:
=> 0xe9
=> E9
Manual solution:
Code: Select all
233 % 16 = 14 r 9
14 % 16 = 0 r 14 (14 = E in hex)
Python:
Code: Select all
nr = 233
print hex(nr)