반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- GIT
- numpy
- Excel
- Mac
- math
- matplotlib
- django
- google apps script
- Github
- Google Excel
- 파이썬
- Kotlin
- array
- hive
- dataframe
- SQL
- Redshift
- Tkinter
- Python
- gas
- Google Spreadsheet
- PANDAS
- Java
- PostgreSQL
- list
- Apache
- c#
- PySpark
- string
Archives
- Today
- Total
달나라 노트
Python Basic : oct() (10진수를 8진수로 변환. 10진수 8진수 변환. Octal number) 본문
Python/Python Basic
Python Basic : oct() (10진수를 8진수로 변환. 10진수 8진수 변환. Octal number)
CosmosProject 2024. 3. 7. 19:05728x90
반응형
Python의 내장함수 oct()는 10진수를 8진수로 변환해줍니다.
print(oct(12))
-- Result
0o14
12를 8진수로 바꿔보았습니다.
결과에 있는 0o를 지우면 14가 되는데, 바로 이 부분이 8진수를 의미합니다.
(0o에서 o는 oct를 의미하며 8진수를 뜻합니다.)
14를 10진수로 변환해보면 실제로 5가 나옵니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : RGB, RGB Hex color 변환 (0) | 2024.03.07 |
---|---|
Python Basic : hex() (10진수를 16진수로 변환. 10진수 16진수 변환. hexadecimal number) (0) | 2024.03.07 |
Python Basic : bin() (10진수를 2진수로 변환. 10진수 2진수 변환. Binary number.) (0) | 2024.03.07 |
Python Basic : dir (class의 method, attribute 확인하기, class method, attribute 리스트 확인) (0) | 2024.02.27 |
Python Basic : SSL: CERTIFICATE_VERIFY_FAILED error (0) | 2024.01.29 |
Comments