函数的定义与调用
Posted outofcontrol
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数的定义与调用相关的知识,希望对你有一定的参考价值。
# _*_ coding: utf-8 _*_
# 定义函数的三种方式
# 有参函数
# def function0(x):
# print(‘%s‘ % (x + 1))
#
# function0(2)
# 无参函数
# def function1():
# print(‘hello world‘)
#
# function1()
# 空函数
‘‘‘
def registration():
pass
def login():
pass
def exit():
pass
def shoppint():
pass
‘‘‘
# 函数调用的三种形式
# 1
# registration() 直接调用函数名
# 2
# def max2(x, y):
# if x > y:
# print(type(x))
# return x
# else:
# return y
#
# res = max2(7, 1) * 12 #直接在表达式中使用
# print(res)
# 3
# res = max2(max2(10,20),30)
# print(res)
以上是关于函数的定义与调用的主要内容,如果未能解决你的问题,请参考以下文章