文章目录
1.第一个函数2.第一个函数改造3.函数的参数4.函数的返回值5.函数的嵌套调用6.打印分割线7.打印多条分隔线
1.第一个函数
def say_hello():
print("hello 1")
print("hello 2")
print("hello 3")
say_hello
()
2.第一个函数改造
name
= "小明"
def say_hello():
"""打招呼"""
print("hello 1")
print("hello 2")
print("hello 3")
print(name
)
say_hello
()
print(name
)
3.函数的参数
def sum_2_num(num1
, num2
):
"""对两个数字的求和"""
result
= num1
+ num2
print("%d + %d = %d" % (num1
, num2
, result
))
sum_2_num
(1, 2)
4.函数的返回值
def sum_2_num(num1
, num2
):
"""对两个数字的求和"""
result
= num1
+ num2
return result
sum_result
= sum_2_num
(10, 20)
print("计算结果:%d" % sum_result
)
5.函数的嵌套调用
def test1():
print("*" * 50)
def test2():
print("-" * 50)
test1
()
print("+" * 50)
test2
()
6.打印分割线
def print_line(char
, times
):
print(char
* times
)
print_line
("hi ", 40)
7.打印多条分隔线
def print_line(char
, times
):
"""打印单行分隔线
:param char: 分隔字符
:param times: 重复次数
"""
print(char
* times
)
def print_lines(char
, times
):
"""打印多行分隔线
:param char: 分隔线使用的分隔字符
:param times: 分隔线重复的次数
"""
row
= 0
while row
< 5:
print_line
(char
, times
)
row
+= 1
print_lines
("-", 20)
转载请注明原文地址: https://yun.8miu.com/read-21004.html