중복없는 랜덤 리스트 생성하기 (파이썬)
1 2 3 4 5 6 7 8 9 | def random_list(n): temp = list(range(n)) result = [] while len(temp) > 0: idx = int(random() * len(temp)) result.append(temp[idx]) del temp[idx] return result | cs |
'Language > python' 카테고리의 다른 글
[python] ctypes.memmove() example (0) | 2017.12.13 |
---|---|
[python] REST API request using python (0) | 2017.12.09 |
[python] selenium install (0) | 2017.11.30 |
[python] list in for-loop syntax (+tuple) (0) | 2017.11.29 |
[python] pip error: Command "python setup.py egg_info" failed with error code 1 (0) | 2017.11.27 |
WRITTEN BY
- hojongs
블로그 옮겼습니다 https://hojongs.github.io/