일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 조회
- github
- property
- burp suite
- 파이썬
- 김성엽 대표님
- Pwndbg
- blind sql injection
- 메소드
- window
- 포인터
- 자바스크립트
- 배열
- document
- object
- IF문
- sql injection
- 백준 파이썬
- 함수
- lord of sql injection
- jQuery
- xss game
- 객체
- 백준 알고리즘
- xss game 풀이
- 조건문
- suninatas 풀이
- python
- 사칙연산
- htmlspecialchars
Archives
- Today
- Total
목록외장함수 (2)
power-girl0-0
함수 실습
def a_rectangleArea(): print(5*7) def b_rectagleArea(x, y): print(x * y) def c_rectagleArea(): return (5*7) def d_rectagleArea(x, y): return ( x*y ) a_rectangleArea() b_rectagleArea(5,7) print(c_rectagleArea()) print(d_rectagleArea(5,7)) * a_rectagleArea와 b_rectagleArea는 return값이 없으므로 print함수에 넣으면 null을 출력한다.
언어/Python
2020. 10. 6. 12:09
function
1. 내장함수 https://docs.python.org/3/library/functions.html Built-in Functions — Python 3.8.6 documentation Built-in Functions The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order. abs(x) Return the absolute value of a number. The argument may be an integer or a floating po docs.python.org dir(__builtins__) 명령..
언어/Python
2020. 10. 6. 11:29