일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 배열
- property
- jQuery
- 함수
- 파이썬
- xss game 풀이
- 사칙연산
- python
- object
- htmlspecialchars
- IF문
- 포인터
- element 조회
- 백준 알고리즘
- 메소드
- Pwndbg
- suninatas 풀이
- window
- 김성엽 대표님
- 자바스크립트
- lord of sql injection
- sql injection
- 백준 파이썬
- 객체
- document
- xss game
- 조건문
- blind sql injection
- burp suite
- github
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