0w0

[BASIC] 파이썬 함수(function) 본문

Coding/Python

[BASIC] 파이썬 함수(function)

0w0 2020. 12. 5. 06:17
728x90
반응형
# 함수
# 별도의 기능을 하는 코드의 구성
# def 함수명(인자):

def hi_robot():
    print("Hi python")


hi_robot()


#출력형태
C:\Users\hotsk\Anaconda3\envs\Repeat\python.exe C:/Workspace/repeat/helloworld.py
Hi python

Process finished with exit code 0
728x90
반응형

'Coding > Python' 카테고리의 다른 글

[BASIC] 파이썬 함수의 전달값, 반환값  (0) 2020.12.05
[BASIC] 파이썬 한줄for문  (0) 2020.11.25
[BASIC] 파이썬 continue break  (0) 2020.11.25
[BASIC] 파이썬 while문  (0) 2020.11.25
[BASIC] 파이썬 for문  (0) 2020.11.24
Comments