로딩
티스토리 데이터 처리 중입니다.

Python Training Day5. Functions

 Python Training Day5. Functions

Chapter 8. Functions Define functions 1.

Functions in python are defined using the block keyword "def", followed with the function's name as the block's name. 2. Functions may also receive arguments (variables passed from the caller to the function). 3.

Functions may return a value to the caller, using the keyword- 'return' . Call functions Simply write the function's name followed by (), placin.....