Revision history of "Decimal 2 Binary Conversion in Python"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 12:59, 15 February 2017Thiebaut (talk | contribs). . (1,740 bytes) (+1,740). . (Created page with "--~~~~ ---- <br /> =Source= <br /> ::<source lang="python"> from __future__ import print_function x = int( input( "> " ) ) binary = "" while True: if x==0: break re...")