파이썬 문법(4)

hyihyi·2022년 9월 3일
0
post-custom-banner

format() 내장 함수를 사용하면 숫자를 다른 진수의 문자열로 바꿀 때 접두어를 제외할 수 있다.

>>>format(17,'b')
'10001'
>>>format(17,'o')
'21'
>>>format(17,'x')
'11'
>>>format(17,'X')
'11'
>>>format(17,'d')
'17'

list에 입력받은 값을 바로 넣을 때

list1.append(list(map(int, input().split())))
profile
내가 이해하기 쉽게 쓰는 블로그

0개의 댓글