使用函数的优势


1、在Python语言中函数是非常重要的组成部分

2、Python有很多内建函数(len()、print()等)

3、自己创建的函数被称为用户自定义函数

4、函数可以将需要重复使用的代码进行模块化(结构清晰、逻辑明确、方便阅读)

5、创建自定义函数的方法

def abc(x, y, z):
    for a in x, y, z:
        for b in x, y, z:
            for c in x, y, z:
                if (a != 0) and (a != b) and (a != c) and (b != c):
                    print(a, b, c)


abc(1, 2, 3)

results matching ""

    No results matching ""