일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 메소드
- window
- python
- 백준 알고리즘
- element 조회
- sql injection
- 김성엽 대표님
- suninatas 풀이
- 파이썬
- 백준 파이썬
- 객체
- property
- 사칙연산
- 함수
- document
- 자바스크립트
- IF문
- Pwndbg
- object
- xss game
- jQuery
- htmlspecialchars
- blind sql injection
- burp suite
- 포인터
- github
- xss game 풀이
- 조건문
- 배열
- lord of sql injection
Archives
- Today
- Total
목록랜덤 데이터 (1)
power-girl0-0
[ Numpy ] 랜덤 생성
랜덤 생성 numpy는 몇몇 난수 발생 루틴을 제공한다. 아래는 이에 해당하는 난수 발생 루틴의 종류이다. random.normal random.rand random.randn random.randint random.random 0. 환경 설정 먼저, 활용을 위해서 세팅을 아래와 같이 해주자. import numpy as np import matplotlib.pyplot as plt 1. random.rand : 0~1 까지의 실수 난수가 발생한다. x = np.random.rand(3,2) print(x) x = np.random.rand(1000) plt.hist( x, 100) plt.show() 2. random.randn : 평균이 0 , 편차가 1인 정규분포로 난수를 발생시킨다. x = np...
언어/Python
2021. 3. 29. 13:44