반응형
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
- gas
- Kotlin
- google apps script
- PANDAS
- list
- Redshift
- Python
- Google Spreadsheet
- Apache
- GIT
- math
- numpy
- SQL
- 파이썬
- array
- Java
- dataframe
- Tkinter
- hive
- django
- Google Excel
- string
- Github
- PySpark
- Excel
- c#
- PostgreSQL
- matplotlib
- Mac
Archives
- Today
- Total
달나라 노트
Python random : shuffle (List 항목 섞기, list의 항목을 무작위로 재배열.) 본문
Python/Python random
Python random : shuffle (List 항목 섞기, list의 항목을 무작위로 재배열.)
CosmosProject 2020. 12. 23. 03:33728x90
반응형
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 자체의 순서를 바꿉니다.
728x90
반응형
'Python > Python random' 카테고리의 다른 글
Python random : choice (제시된 list 중에서 무작위로 하나를 선택하여 리턴) (0) | 2020.12.23 |
---|---|
Python random : randint (정해진 범위 내에서 중에서 정수 난수값 리턴) (0) | 2020.12.23 |
Python random : random (0 이상 1 미만의 실수 중에서 실수 난수값 리턴) (0) | 2020.12.23 |
Comments