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

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