題目 a034: 二進位制轉換https://zerojudge.tw/ShowProblem?problemid=a034 解答 123from sys import stdinfor _ in map(int,stdin): print(format(_,"b"))