일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준 알고리즘
- suninatas 풀이
- lord of sql injection
- burp suite
- Pwndbg
- IF문
- 포인터
- document
- 객체
- 배열
- 함수
- python
- jQuery
- 사칙연산
- property
- 김성엽 대표님
- xss game 풀이
- xss game
- blind sql injection
- element 조회
- 자바스크립트
- object
- htmlspecialchars
- 메소드
- github
- sql injection
- window
- 조건문
- 파이썬
- 백준 파이썬
Archives
- Today
- Total
목록차이값 (1)
power-girl0-0
성적입력받아 최대값과 최소값 차이 구하기
class Score: def __init__(self): self.jumsu=[] def input_gap(self): for i in range(0, 10): num = int(input("성적 입력 : ")) self.jumsu.append(num) def high_score(self): high = 0 for base in self.jumsu: if high base: low = base return low def gap_score(self): gap = self.high_score() - self.lo..
언어/Python
2020. 12. 2. 09:59