Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- FLUTTER
- DOM
- 자바
- 강원도속초맛집
- Python
- 아스키코드
- 정렬알고리즘
- Django
- BeautifulSoup
- 추상클래스
- 속초여행
- removetooltip
- richtext
- c언어문자열
- pipenv
- python3
- popupmenubutton
- 알고리즘
- 부스트코스
- 남양주맛집
- 가상환경
- 포인터
- 장고
- 상속
- JavaScript
- 코딩독학
- 성수동카페
- 컴퓨터과학
- 노마드코더
- 건대입구맛집
Archives
- Today
- Total
YUYANE
Python/ function 본문
function 정의하는 방법
def say_hello():
print("hello")
파이썬에서는 { }으로 함수 구분하지 않고 들여쓰기로 구분 (tab 들여쓰기)
들여쓰기에 해당하는 부분만 함수로 여겨짐
- one tab
function 실행
say_hello()
function arguments
함수에 data/input을 줄 수도 있다.
return은 값을 주고, 함수를 종료한다.
def say_hello(who):
print("hello",who)
say_hello("Yujin")
def say_hi(name="anonymous"):
print("hi",name)
say_hi()
positional argument
def plus(a,b):
return a+b
result = plus(2,5)
**String에 변수를 포함시키고 싶다면
def say_hello(name,age):
return f"Hello {name} you are {age} years old"
def say_hello(name,age):
return "Hello "+name+" you are "+age+" years old"
'Programming Languages > PYTHON' 카테고리의 다른 글
Python / 반복문 (0) | 2020.12.16 |
---|---|
Python / 조건문 (0) | 2020.12.16 |
Python/ Functions (0) | 2020.12.14 |
Python/ Sequence Type (list, dictionary) (0) | 2020.12.14 |
Python/ 변수에 저장할 수 있는 타입 (0) | 2020.12.14 |
Comments