Python-自定义函数-参数

一、自定义函数参数

1.种类

(1)位置参数

"x"就是位置参数

#!/usr/bin/env python # -*- coding: utf-8 -*- #author: dingkai #mtime: 2018/4/27 def power(x): result = x * x print(result)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgdfzg.html