-
[Python] random int list (comprehension list)Implementation/Python 2021. 9. 30. 09:34
# 랜덤한 정수로 구성된 매트릭스 생성 import numpy as np sp = np.random.randint(-90, 100, (1,5)) # 랜덤한 정수로 구성된 리스트 생성 import random [random.randint(-100,100) for _ in range(10)]
# 은근히 유용하게 쓸 때가 많다.
'Implementation > Python' 카테고리의 다른 글
[Python] max 함수에서 key 값 사용하기 (0) 2021.10.27 [Python] tuple(index, key) in list (0) 2021.10.27 [Python] tensorflow.expand_dims (0) 2021.09.28 [Python] unique key counting dictionary (0) 2021.09.26 [Python] Permutation with string (0) 2021.09.26