[백준] 1212: 8진수 2진수 (Python)

JiKwang Jeong·2021년 10월 25일
0
post-custom-banner

문제📖

풀이🙏

  • 입력받은 값을 8진수로 표현하고 그 값을 binary 형태로 출력한다.

코드💻

s = input()
print(format(int(s, 8),'b'))
profile
기억보다 기록, 난리보다 정리

0개의 댓글