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