Path: blob/master/source/python/algorithm_binary_representation.rst
1241 views
===================== Binary Representation ===================== Question -------- Write a program to display the binary representation of various integers. Solution -------- .. literalinclude:: ../../languages/python/algorithm_binary_representation.py :language: python3 :tab-width: 4 .. runcode:: ../../languages/python/algorithm_binary_representation.py :language: python3 :codesite: ideone Explanation =========== .. seealso:: * :python-suggest-improve:`algorithm_binary_representation.py` * :python-better-explain:`algorithm_binary_representation.rst`