반응형
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
- math
- django
- Apache
- string
- Mac
- array
- Google Spreadsheet
- GIT
- c#
- list
- Kotlin
- dataframe
- google apps script
- PySpark
- 파이썬
- Java
- Python
- Tkinter
- hive
- Github
- gas
- Google Excel
- SQL
- Excel
- numpy
- Redshift
- PANDAS
- matplotlib
- PostgreSQL
Archives
- Today
- Total
목록phonenumbers (1)
달나라 노트
Python phonenumbers : Python으로 핸드폰번호의 간단한 정보 추출해보기
Python에 있는 phonenumbers library는 입력한 핸드폰 번호의 간단한 정보를 알려줍니다. 바로 코드를 봅시다. import phonenumbers from phonenumbers import carrier, geocoder, timezone mobile_phone_number = '+821012345678' mobile_phone_number = phonenumbers.parse(mobile_phone_number) print('Time zone of the number ->', timezone.time_zones_for_number(mobile_phone_number)) print('Country of the number ->', geocoder.description_for_numbe..
Python/Python ETC
2021. 10. 31. 19:23