반응형
n 을 입력받아 0~99 의 난수로 이루어진 n x n 행렬을 반환하기
>>> import numpy as np
>>>
>>> np.random.randint(0, 100, size=(3, 3))
array([[32, 65, 6],
[35, 66, 43],
[89, 14, 90]])
>>> np.random.randint(0, 100, size=(2, 2))
array([[87, 7],
[22, 97]])
>>> n = int(input())
4
>>> mat = np.random.randint(0, 100, size=(n, n))
>>> mat
array([[53, 62, 9, 84],
[62, 22, 75, 72],
[86, 68, 43, 14],
[97, 59, 20, 84]])
728x90
'프로그래밍 > Python' 카테고리의 다른 글
[PYTHON|SO번역] pip search 실행시에 XMLRPC API is currently disabled due to unmanageable load 에러 발생 (0) | 2021.11.11 |
---|---|
ipython : Exception [WinError 995] 스레드 종료 또는 응용 프로그램 요청 때문에 I/O 작업이 취소되었습니다 (0) | 2021.10.20 |
[Python] TypeError: unsupported operand type(s) for (0) | 2021.05.03 |
카마이클 수 (0) | 2021.04.08 |
파이썬 xlrd.biffh.XLRDError: Excel xlsx file; not supported (0) | 2021.03.14 |