This is the presentation associated with the Python Binary, Octal and Hexadecimal video.
[dflip id=”2344″ ][/dflip]
Python Binary, Octal and Hexadecimal Video Question
This is the question that was asked in the Python Binary, Octal and Hexadecimal video
Question :
Convert the below number into hexadecimal number:
0b100000000
[bg_collapse view=”button-blue” color=”#ffffff” icon=”eye” expand_text=”Show Answer” collapse_text=”Hide Answer” ]
In [1]:
print(hex(0b100000000))
[/bg_collapse]