python函数运用

Posted chenziqing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数运用相关的知识,希望对你有一定的参考价值。

函数

函数的好处:函数更方便,复用,可以在多个场景下用

函数用来:实现一个功能.函数理解成一个工具,遇到了问题把这个工具拿来用

直接函数调用

def get_pi():
    import random

    count = 0
    for i in range(10000):
        x, y = random.random(), random.random()
        dist = pow((x - 0) ** 2 + (y - 0) ** 2, 0.5)

        if dist < 1:
            count += 1

    print(4 * count / 10000)
#
get_pi()

技术图片

带参数的函数调用

def get_pi(num):
    import random

    count = 0
    for i in range(num):
        x, y = random.random(), random.random()
        dist = pow((x - 0) ** 2 + (y - 0) ** 2, 0.5)

        if dist < 1:
            count += 1

    print(4 * count / num)
get_pi(10)
get_pi(100)
get_pi(1000)
get_pi(10000)
get_pi(100000)

技术图片

带返回值的函数调用

def add_sum(num):

    count = 0
    for i in range(1, num):
        count += i

    return count


res1= add_sum(101)
print('res1:',res1)
res2 = add_sum(1001)
print('res2:',res2)
res3 = add_sum(10001)
print('res3:',res3)

技术图片

作  者:豆瓣酱瓣豆
出  处:https://www.cnblogs.com/chenziqing/
查看其它博文请点击:https://www.cnblogs.com/chenziqing/
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角【推荐】一下。您的鼓励是博主的最大动力!

微信:

技术图片

以上是关于python函数运用的主要内容,如果未能解决你的问题,请参考以下文章

python函数名的运用

python函数运用

Python基础语法-基本数据类型

Python之对DataFrame的多列数据运用apply函数操作

python13 1.函数的嵌套定义 2.globalnonlocal关键字 3.闭包及闭包的运用场景 4.装饰器

python学习第五十四天:作用域对象与运用技巧