当前位置 : 主页 > 编程语言 > python >

Python-函数(形参练习)

来源:互联网 收集:自由互联 发布时间:2022-06-15
""" Author:Zhou Create_Date:2022年06月07日--22:38 Tool:PyCharm Software: PyCharm """ def display_message(): print('函数实参形参的定义以及运用') def favorite_book(title): print('One of my favorite books is ' + title) if
"""
Author:Zhou
Create_Date:2022年06月07日--22:38
Tool:PyCharm
Software: PyCharm
"""


def display_message():
print('函数实参形参的定义以及运用')


def favorite_book(title):
print('One of my favorite books is ' + title)


if __name__ == '__main__':
display_message()
favorite_book('Alice in Wonderland')
上一篇:Python-函数(实参练习一)
下一篇:没有了
网友评论