일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PANDAS
- dataframe
- string
- gas
- Google Excel
- Excel
- PySpark
- 파이썬
- numpy
- Tkinter
- hive
- PostgreSQL
- Github
- Java
- matplotlib
- django
- Kotlin
- Google Spreadsheet
- google apps script
- Mac
- Redshift
- GIT
- array
- Python
- Apache
- math
- c#
- list
- SQL
- Today
- Total
목록Python (379)
달나라 노트
import random a = [1, 2, 3, 4, 5] b = random.choice(a) print(a) print(b) - Result [1, 2, 3, 4, 5] 2 random.choice 함수는 parameter로 주어진 list a에 있는 요소 중 랜덤으로 하나를 반환하여 출력해줍니다.
import random print(random.randint(1, 10)) - Result 10 randint 함수는 정해진 두 정수 또는 그 정수 사이의 범위에 존재하는 정수 중에서 난수값을 리턴합니다. 리턴값에는 명시된 1과 10도 포함됩니다.
import random print(random.random()) - Result 0.8036004848126851 random.random은 0이상 1미만의 실수 중 랜덤한 난수값을 반환합니다.
import datetime dt = datetime.date(2020, 12, 25) print(dt) iso_data = dt.isocalendar() print(iso_data) print(iso_data[0]) # year print(iso_data[1]) # week number print(iso_data[2]) # week day number - Result 2020-12-25 (2020, 52, 5) 2020 52 5 isocalendar는 date or datetime에 대해 해당 날짜의 년도, 주차(week number), 요일(week day)을 포함한 Tuple 데이터를 반환합니다. 따라서 return된 Tuple의 index = 1인 숫자를 보면 week number를 얻을 수 있습..