티스토리 뷰
파이썬에서 format()함수를 이용하면 10진수를 2진수, 8진수, 16진수로 간단하게 변환 할 수 있습니다.
2진수는 Binary format의 'b'
8진수는 Octal format의 'o'
16진수는 Hexadecimal format의 'x'
를 사용하면 됩니다.
n = 8
b = format(n,'b') #Binary format
o = format(n,'o') #Octal format
x = format(n,'x') #Hexadecimal format
print(b)
print(o)
print(x)
1000
10
8
'python' 카테고리의 다른 글
python | 문자열 리스트를 숫자열 리스트로 변환 하기 (0) | 2020.08.05 |
---|---|
python | format 함수를 사용하지 않고 10진수를 2진수로 변환하기 (0) | 2020.08.05 |
python | 재귀함수(recursive function)를 이용한 팩토리얼(factorial) (0) | 2020.08.03 |
python | if 조건문 없이 짝수번, 홀수번 찾는 더욱 간단한 방법 (0) | 2020.07.31 |
python | 몇개인지는 모를 여러개의 인수를 받는 방법 (0) | 2020.07.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Excel
- coronavirus
- Cast
- 엑셀
- Heatmap
- plot
- Coding
- 팟빵
- RStudio
- visualizing
- Command
- data
- SEQ
- r
- format
- Python
- 2진수
- for loop
- comma
- geom_line
- 파이썬
- covid
- 숫자
- BIOINFORMATICS
- Visualization
- Order
- 코로나바이러스
- 데이터
- hist
- geom_bar
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함