概述
# 定义两个必选参数的函数
def my_pow1(x, n):
if not isinstance(x, (int, float)) or not isinstance(n, (int, float)):
raise Exception("Input type error")
result = 1
for i in range(n):
result *= x
return result
print("3**5 = ", my_pow1(3, 5))
# 输出: 3**5 = 243
# print(my_pow1('A3', 5)) # raise error
# 定义一个必选参数和一个默认参数
def my_pow2(x, n=2):
if not isinstance(x,
最后
以上就是缥缈皮皮虾为你收集整理的Python必选参数,默认参数,可选参数,关键字参数实例说明的全部内容,希望文章能够帮你解决Python必选参数,默认参数,可选参数,关键字参数实例说明所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复