반응형
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
- Java
- Kotlin
- PostgreSQL
- gas
- Google Excel
- PANDAS
- Tkinter
- c#
- list
- Excel
- string
- Github
- Redshift
- Google Spreadsheet
- hive
- PySpark
- Apache
- numpy
- django
- 파이썬
- dataframe
- Mac
- SQL
- matplotlib
- google apps script
- math
- Python
- GIT
- array
Archives
- Today
- Total
달나라 노트
Python Basic : bin() (10진수를 2진수로 변환. 10진수 2진수 변환. Binary number.) 본문
Python/Python Basic
Python Basic : bin() (10진수를 2진수로 변환. 10진수 2진수 변환. Binary number.)
CosmosProject 2024. 3. 7. 19:01728x90
반응형
Python의 내장함수 bin()은 10진수를 2진수로 변환해줍니다.
print(bin(5))
-- Result
0b101
5를 2진수로 바꿔보았습니다.
결과에 있는 0b를 지우면 101이 되는데, 바로 이 부분이 2진수를 의미합니다.
101 을 10진수로 변환해보면 실제로 5가 나옵니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Comments