当前位置:   article > 正文

python 函数的定义及使用_定义一个函数say_hi_gender()python

定义一个函数say_hi_gender()python
python 函数的定义及使用
import random
"""
# 函数定义定义1 #
def 函数名():
    函数体
    
# 函数调用 #
函数名()
"""


def say_hi():
    print("Hello Python world!")


say_hi()


"""
# 函数定义定义2 #
def 函数名(参数...):
    函数体
    
# 函数调用 #
函数名(参数...) 
"""


def say_hi(name):
    print(f"Hello {name}")


say_hi("Azzan")


"""
# 函数定义定义3 #
def 函数名():
    函数体
    return 变量
    
# 函数调用 #
变量 = 函数名()
"""


def compute():
    mix = random.randint(1, 20)
    max = random.randint(21, 40)
    return mix + max


print(compute())


"""
# 函数定义定义4 #
def 函数名(a, b):
    函数体
    return 变量
    
# 函数调用 #
变量 = 函数名(a, b)
"""


def compute(a, b):
    # return a + b
    compute_sum = a + b
    return compute_sum


print(compute(1, 3))


"""
练习:
"""


def check(num):
    # 函数文档说明
    """
    check函数接收一个参数, 检查参数的功能
    :param num: 形参num 表示要检查的参数
    :return:
    """
    print("欢迎您来到怡红院!请出示您的健康码以及72小时核酸证明, 并配合测量体温!")
    if num <= 37.5:
        print("体温测量中, 您的温度是: %.1f度, 体温正常请进!" % num)
    else:
        print("体温测量中, 您的体温是: %.1f度, 需要隔离!" % num)


check(37.6)


"""
# global 关键字
"""

num = 100


def def_a():
    print(f"def_a: {num}")


def def_b():
    global num  # 我可以理解为  提升num 作用范围域
    # 如果不加global, num = 200, 这个num其实就是一个def_b()函数中的内部变量, num = 100 与 num = 200其实是两个变量且它们之间并没有关系
    num = 200
    print(f"def_b: {num}")


def_a()
def_b()
print(num)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/499147
推荐阅读
相关标签
  

闽ICP备14008679号