python | format 함수를 사용한 2진수 8진수 16진수 변환
파이썬에서 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
2020. 8. 5. 11:27
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Excel
- hist
- 숫자
- covid
- format
- plot
- data
- comma
- 팟빵
- Order
- 2진수
- coronavirus
- SEQ
- Visualization
- 파이썬
- Python
- Cast
- for loop
- Command
- RStudio
- 코로나바이러스
- BIOINFORMATICS
- geom_line
- 엑셀
- Heatmap
- Coding
- visualizing
- r
- 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 |
글 보관함