- 博客(4)
- 收藏
- 关注
原创 Python基础——函数
1、定义函数:使用def关键字 定义一个名为greet_user()的函数,并用文档字符串进行注释(三引号括起)。紧跟在第一行代码后面的所有缩进构成了函数体,第三行代码是函数体内唯一的一行代码,因此在这个函数中只有一项工作:打印Hello。要让函数工作也即调用函数时,只需输入greet_user()即可。另外在greet_user()的括号中,有时需要指出函数为完成任务所需的信息。 def greet_user(): """显示简单的问候语。""" print("Hello") gr
2021-12-26 17:12:19 364
原创 Python基础练习——函数
练习8-3:这里我们可以使用换行符,使表达更直观简洁。 def make_shirt(size,word): print(f"The shirt's size is {size}.") print(f"\nThe shirt's word is {word}.") make_shirt("m",'superman') 练习8-4: def make_shirt(size='l',word='I love python'): print(f"The shirt's s...
2021-11-05 16:54:57 421
原创 Python基础练习——函数
练习8.1 简单代码举例 def display_message(something): print(f"I learned {something} in this chapter") display_message("参数") 注:要注意f字符串的格式还有在调用函数时记得实参的输入。 练习8.2代码举例 def favorite_book(title): print(f"One of my favorite books is {title}.") favorite_book('A...
2021-11-04 16:57:56 157
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人