What does def in python mean?

步履不停
Release: 2019-07-03 14:06:18
Original
37475 people have browsed it

What does def in python mean?

define means, used to define functions.

For example:

def Function name (parameter 1, parameter 2, ..., parameter N): Execution statement

# 例:简单的函数使用
# 定义函数
def hello():
    print 'hello python!'
     
# 调用函数        
hello()
Copy after login

>>> hello python!

Recommended related tutorials: Python video tutorial

The above is the detailed content of What does def in python mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!