반응형
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
- Redshift
- PostgreSQL
- Kotlin
- c#
- array
- Github
- PANDAS
- PySpark
- hive
- SQL
- Excel
- Google Excel
- matplotlib
- Google Spreadsheet
- django
- Python
- list
- GIT
- numpy
- 파이썬
- Apache
- string
- dataframe
- gas
- Tkinter
- Mac
- google apps script
- math
- Java
Archives
- Today
- Total
목록Python/Python random (4)
달나라 노트
Python random : shuffle (List 항목 섞기, list의 항목을 무작위로 재배열.)
import random a = [1, 2, 3, 4, 5] random.shuffle(a) print(a) - Result [2, 5, 4, 3, 1] random.shuffle 함수는 parameter로 주어진 list a에 있는 요소들을 랜덤한 순서로 재정렬합니다. 또한 이 함수는 원본 list 자체의 순서를 바꿉니다.
Python/Python random
2020. 12. 23. 03:33
Python random : choice (제시된 list 중에서 무작위로 하나를 선택하여 리턴)
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에 있는 요소 중 랜덤으로 하나를 반환하여 출력해줍니다.
Python/Python random
2020. 12. 23. 03:32
Python random : randint (정해진 범위 내에서 중에서 정수 난수값 리턴)
import random print(random.randint(1, 10)) - Result 10 randint 함수는 정해진 두 정수 또는 그 정수 사이의 범위에 존재하는 정수 중에서 난수값을 리턴합니다. 리턴값에는 명시된 1과 10도 포함됩니다.
Python/Python random
2020. 12. 23. 03:21