• 5个写自定义函数小练习


    计算列表平均值、素数判定、反转字符串,查找整数列表最大最小值、统计字符串中元音字母个数(大小写字不敏感)。


    (笔记模板由python脚本于2023年11月09日 21:50:35创建,本篇笔记适合熟悉Python函数及基本数据类型的coder翻阅)


    【学习的细节是欢悦的历程】


      自学并不是什么神秘的东西,一个人一辈子自学的时间总是比在学校学习的时间长,没有老师的时候总是比有老师的时候多。
                —— 华罗庚


    等风来,不如追风去……


    计算列表平均值、素数判定、反转字符串
    5个写自定义函数小练习
    (查找整数列表最大最小值、统计字符串中元音字母个数)


    本文质量分:

    97

    本文地址: https://blog.csdn.net/m0_57158496/article/details/134321362

    CSDN质量分查询入口:http://www.csdn.net/qc



    目 录

    • ◆ 函数小练习
      • 1、题目描述
      • 2、算法解析
        • 2.1 计算列表平均值
        • 2.2 素数判定
        • 2.3 反转字符串
        • 2.4 查找整数列表最大最小值
        • 2.5 统计字符串中的元音字母
      • 3、完整源码



    ◆ 函数小练习


    1、题目描述


    • 题目描述截屏图片
      在这里插入图片描述

    题目来源于 CSDN 问答社区提问“5个写函数小练习



    回页目录


    2、算法解析


      计算列表平均值、素数判定、反转字符串、查找整数列表最大最小值、统计字符串中元音字母个数(大小写字不敏感)等五道小题,练习写自定义函数,算法简单,逻辑明了。Python,解决问题总是不只一个方案,作为死粉的我,也在渐渐养成python的这一陋习。在这篇学习笔记中,我用目前能够想到的途径来搞定各小题。


    2.1 计算列表平均值


    • 题目描述
      编写一个函数calculate_average,接受一个列表作为参数,计算列表中所有元素的平均值,并返回结果。例如,对于列表.[1, 2, 3, 4, 5],函数应该返回3.0。

         可以遍历列表计算总和,也可以用sum函数计算列表总和。

    • 代码运行效果截屏图片
      在这里插入图片描述

    
    def calculate_average1(lis):
        count = 0
        
        for i in lis:
            count += i
            
        return count/len(lis)
    
    
    def calculate_average2(lis):
        return sum(lis)/len(lis)
    
    
    if __name__ == '__main__':
        lis = [1, 2, 3, 4, 5]
        print(f"\n1、输出:\n{' '*3}a. 遍历列表计算总和:{calculate_average1(lis)}\n{' '*3}b. 用sum函数计算列表总和:{calculate_average2(lis)}")
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18



    回页目录



    2.2 素数判定


    • 题目描述
      编写一个函数is_prime, 接受一个整数作为参数,判断该整数是否为素数(只能被1和自身整除的数)。 如果是素数,返回True,否则返回False。

        最小的素数是2,所以我写if num<2: return False,小于2的就不是素数。

    • 代码运行效果截屏图片
      在这里插入图片描述

    
    def is_prime(num):
        
        if num < 2:
            return False
        
        for i in range(2, num):
            
            if not num%i:
                return False
                
        return True
        
    
    if __name__ == '__main__':
        print(f"\n2、输出:\n{' '*3}100以内的素数:{', '.join(map(str, [i for i in range(100) if is_prime(i)]))}")
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17



    回页目录



    2.3 反转字符串


    • 题目描述
      编写一个函数reverse_string, 接受一个字符串作为参数,并返回该字符串的反转形式。例如,对于字符串"Hello, World!",函数应该返回"!dlroW ,olleH"。

        本小题,我用了list.insert方法始终在0索引前插入、索引下标逆序遍历、负整数索引下标遍历、索引切片逆序复制[::-1]四种途径反转字符串。在Python中,实现列表等序列对象反转的途径,其实不少,更多途径请翻阅我曾经的学习笔记:Python列表(list)反序(降序)的7种实现方式
      ( 6858 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/128271700
      点赞:5   踩 :0  收藏:20  打赏:0  评论:8
      本篇博文笔记于 2022-12-11 23:54:15 首发,最晚于 2023-03-20 18:13:55 修改。

    • 代码运行效果截屏图片
      在这里插入图片描述

    
    def reverse_string1(s):
        result = []
        
        for i in s:
            result.insert(0, i)
        
        return ''.join(result)
    
    
    def reverse_string2(s):
        result = ''
        
        for i in range(len(s)-1, -1, -1):
            result += s[i]
            
        return result 
        
    
    def reverse_string3(s):
        result = ''
        
        for i in range(1, len(s)+1):
            result += s[-1*i]
    
        return result 
    
    
    def reverse_string4(s):
        return s[::-1]
    
    
    
    if __name__ == '__main__':
        s = "Hello, World!"
        print(f"\n3、输出:\n{' '*3}a. 用list.insert方法反转:{reverse_string1(s)}\n{' '*3}b. 索引下标逆序遍历:{reverse_string2(s)}\n{' '*3}c. 负整数索引遍历:{reverse_string3(s)}\n{' '*3}d. Python专属特技切片逆序复制:{reverse_string4(s)}")
    
    
    • 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



    回页目录



    2.4 查找整数列表最大最小值


    • 题目描述
      编写一个函数find_max_min,接受一个列表作为参数,返回列表中最大和最小元素的元组。例如,对于列表[4, 2, 9, 6, 1],函数应该返回(9,1) 。

        一般操作就是设置两个变量存储最大最小值,遍历列表过程中不断用当前整数刷新两个变量,最后打印输出两个变量即可。
        
      值得注意的是,对变量初值的设定。

        我最初把两个变量初值都赋0值,最后打印输出最小值是0,传入的列表中根本没0。😣怎么回事?经分析,因为列表没有比0更小的整数,最小值变量没有刷新过,当然是初值0。经调试,找到了解决之道:两个变量都可以设置成列表中的任意数,同一个任意数都行。哪怕刚好设置成了最大最小值,也不影响结果,因为它即使不被替换,它还是最大或者最小值。我在代码中,把列表首个元素赋给了两个变量mymax、mymin。

    • 代码运行效果截屏图片
      在这里插入图片描述

    
    #4、编写一个函数find_max_min, 接受一个列表作为参数,返回列表中最大和最小元素的元组。例如,对于列表[4, 2, 9, 6, 1],函数应该返回(9,1) 。
    
    
    def find_max_min(lis):
        mymax = mymin = lis[0] # 最大值、最小值初值都设列表第一个元素。
        
        for i in lis:
            
            if i > mymax:
                mymax = i
            elif i < mymin:
                mymin = i
    
        return mymax, mymin
    
    def find_max_min2(lis):
        
        return max(lis), min(lis)
    
    
    if __name__ == '__main__':
        lis = [4, 2, 9, 6, 1]
        print(f"\n4、输出:\n{' '*3}a. 遍历查找(一般写法):{find_max_min(lis)}\n{' '*3}b. 直接上max、min函数:{find_max_min2(lis)}")
    
    
    
    • 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



    回页目录



    2.5 统计字符串中的元音字母


    • 题目描述
      编写一个函数count_vowels,接受一个字符串作为参数,统计字符串中元音字母(大小写不敏感)的数量,并返回结果。
      例如,对于字符串"Hello, World!", 函数应该返回3。

        英文中有a、o、e、i、u五个元音字母,设置vowels = list(‘aoeiu’),遍历输入字符串时用成员关键字in判定筛选元音字母。我用了列表解析当in表达式为True,则置1,最后用sum函数求和列表,就得到元音字母总数。当然,也是可以遍历元音字母,用字符串方法str.count统计元音字母的。

    • 代码运行效果截屏图片
      在这里插入图片描述

    遍历字符串统计python代码

    
    def count_vowels(s):
        vowels = list('aoeiu')
        return sum([1 for i in s if i.lower() in vowels])
    
    
    if __name__ == '__main__':
        s1 = "Hello, World!"
        s2 = "I'm a old man. my name is DreamElf_cq, I live in Chongqing. I love Python."
        print(f"\n5、输出:\n{' '*3}样例a\n{' '*3}{count_vowels(s1)} vowels of “{s1}”\n{' '*3}样例b\n{' '*3}{count_vowels(s2)} vowels of “{s2}”")
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    遍历元音字母用str.count方法统计

    
    def count_vowels2(s):
        vowels = 'aoeiu'
        return sum([s.lower().count(i) for i in vowels])
    
    
    • 1
    • 2
    • 3
    • 4
    • 5



    回页目录


    3、完整源码

    (源码较长,点此跳过源码)

    #!/sur/bin/nve python
    # coding: utf-8
    
    
    #1、编写一个函数calculate_average, 接受一个列表作为参数,计算列表中所有元素的平均值,并返回结果。例如,对于列表.[1, 2, 3, 4, 5],函数应该返回3.0。
    
    
    def calculate_average1(lis):
        count = 0
        
        for i in lis:
            count += i
            
        return count/len(lis)
    
    
    def calculate_average2(lis):
        return sum(lis)/len(lis)
    
    
    if __name__ == '__main__':
        lis = [1, 2, 3, 4, 5]
        print(f"\n1、输出:\n{' '*3}a. 遍历列表计算总和:{calculate_average1(lis)}\n{' '*3}b. 用sum函数计算列表总和:{calculate_average2(lis)}")
    
    
    #2、编写-一个函数is_prime, 接受一个整数作为参数,判断该整数是否为素数(只能被1和自身整除的数)。 如果是素数,返回True,否则返回False。
    
    def is_prime(num):
        
        if num < 2:
            return False
        
        for i in range(2, num):
            
            if not num%i:
                return False
                
        return True
        
    
    if __name__ == '__main__':
        print(f"\n2、输出:\n{' '*3}100以内的素数:{', '.join(map(str, [i for i in range(100) if is_prime(i)]))}")
    
    
    #3、编写一个函数reverse_string, 接受一个字符串作为参数,并返回该字符串的反转形式。例如,对于字符串"Hello, World!",函数应该返回"!dlroW ,olleH"。
    
    def reverse_string1(s):
        result = []
        
        for i in s:
            result.insert(0, i)
        
        return ''.join(result)
    
    
    def reverse_string2(s):
        result = ''
        
        for i in range(len(s)-1, -1, -1):
            result += s[i]
            
        return result 
        
    
    def reverse_string3(s):
        result = ''
        
        for i in range(1, len(s)+1):
            result += s[-1*i]
    
        return result 
    
    
    def reverse_string4(s):
        return s[::-1]
    
    
    
    if __name__ == '__main__':
        s = "Hello, World!"
        print(f"\n3、输出:\n{' '*3}a. 用list.insert方法反转:{reverse_string1(s)}\n{' '*3}b. 索引下标逆序遍历:{reverse_string2(s)}\n{' '*3}c. 负整数索引遍历:{reverse_string3(s)}\n{' '*3}d. Python专属特技切片逆序复制:{reverse_string4(s)}")
    
    #4、编写一个函数find_max_min, 接受一个列表作为参数,返回列表中最大和最小元素的元组。例如,对于列表[4, 2, 9, 6, 1],函数应该返回(9,1) 。
    
    
    def find_max_min(lis):
        mymax = mymin = lis[0] # 最大值、最小值初值都设列表第一个元素。
        
        for i in lis:
            
            if i > mymax:
                mymax = i
            elif i < mymin:
                mymin = i
    
        return mymax, mymin
    
    def find_max_min2(lis):
        
        return max(lis), min(lis)
    
    
    if __name__ == '__main__':
        lis = [4, 2, 9, 6, 1]
        print(f"\n4、输出:\n{' '*3}a. 遍历查找(一般写法):{find_max_min(lis)}\n{' '*3}b. 直接上max、min函数:{find_max_min2(lis)}")
    
    #5、编写一个函数count_vowels, 接受一个字符串作为参数,统计字符串中元音字母(大小写不敏感)的数量,并返回结果。例如,对于字符串"Hello, World!", 函数应该返回3。
    
    def count_vowels(s):
        vowels = 'aoeiu'
        return sum([1 for i in s if i.lower() in vowels])
    
    
    def count_vowels2(s):
        vowels = 'aoeiu'
        return sum([s.lower().count(i) for i in vowels])
    
    
    if __name__ == '__main__':
        s1 = "Hello, World!"
        s2 = "I'm a old man. my name is DreamElf_cq, I live in Chongqing. I love Python."
        print(f"\n5、输出:\n\n{' '*3}样例a\n{' '*3}{count_vowels(s1)} vowels of “{s1}”\n\n{' '*3}样例b\n{' '*3}{count_vowels2(s2)} vowels of “{s2}”")
    
    
    • 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
    • 120
    • 121
    • 122
    • 123
    回页首


    上一篇:  经典猜数字游戏(五次机会猜测100以内随机正整数,我用初通的python类封装了代码并清屏上一次猜测提示,难有所增加咯)
    下一篇: 

    我的HOT博:

      本次共计收集 246 篇博文笔记信息,总阅读量 40.46w,平均阅读量 1644。已生成 16 篇阅读量不小于 4000 的博文笔记索引链接。数据采集于 2023-10-12 05:41:03 完成,用时 4 分 41.10 秒。


    1. ChatGPT国内镜像站初体验:聊天、Python代码生成等
      ( 59262 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/129035387
      点赞:126   踩 :0  收藏:798  打赏:0  评论:71
      本篇博文笔记于 2023-02-14 23:46:33 首发,最晚于 2023-07-03 05:50:55 修改。
    2. 让QQ群昵称色变的神奇代码
      ( 58086 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122566500
      点赞:24   踩 :0  收藏:83  打赏:0  评论:17
      本篇博文笔记于 2022-01-18 19:15:08 首发,最晚于 2022-01-20 07:56:47 修改。
    3. pandas 数据类型之 DataFrame
      ( 9173 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/124525814
      点赞:6   踩 :0  收藏:31  打赏:0  评论:0
      本篇博文笔记于 2022-05-01 13:20:17 首发,最晚于 2022-05-08 08:46:13 修改。
    4. 个人信息提取(字符串)
      ( 7215 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/124244618
      点赞:1   踩 :0  收藏:13  打赏:0  评论:0
      本篇博文笔记于 2022-04-18 11:07:12 首发,最晚于 2022-04-20 13:17:54 修改。
    5. Python列表(list)反序(降序)的7种实现方式
      ( 7161 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/128271700
      点赞:5   踩 :0  收藏:22  打赏:0  评论:8
      本篇博文笔记于 2022-12-11 23:54:15 首发,最晚于 2023-03-20 18:13:55 修改。
    6. 罗马数字转换器|罗马数字生成器
      ( 7035 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122592047
      点赞:0   踩 :0  收藏:1  打赏:0  评论:0
      本篇博文笔记于 2022-01-19 23:26:42 首发,最晚于 2022-01-21 18:37:46 修改。
    7. Python字符串居中显示
      ( 6966 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122163023
      点赞:1   踩 :0  收藏:7  打赏:0  评论:1
      本篇博文笔记
    8. 斐波那契数列的递归实现和for实现
      ( 5523 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122355295
      点赞:4   踩 :0  收藏:2  打赏:0  评论:8
      本篇博文笔记
    9. python清屏
      ( 5108 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/120762101
      点赞:0   踩 :0  收藏:8  打赏:0  评论:0
      本篇博文笔记
    10. 练习:字符串统计(坑:f‘string‘报错)
      ( 5103 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/121723096
      点赞:0   踩 :0  收藏:1  打赏:0  评论:0
      本篇博文笔记
    11. 回车符、换行符和回车换行符
      ( 5093 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/123109488
      点赞:1   踩 :0  收藏:2  打赏:0  评论:0
      本篇博文笔记于 2022-02-24 13:10:02 首发,最晚于 2022-02-25 20:07:40 修改。
    12. 练习:尼姆游戏(聪明版/傻瓜式•人机对战)
      ( 4943 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/121645399
      点赞:14   踩 :0  收藏:42  打赏:0  评论:0
      本篇博文笔记
    13. 密码强度检测器
      ( 4323 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/121739694
      点赞:1   踩 :0  收藏:4  打赏:0  评论:0
      本篇博文笔记于 2021-12-06 09:08:25 首发,最晚于 2022-11-27 09:39:39 修改。
    14. 练习:生成100个随机正整数
      ( 4274 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122558220
      点赞:1   踩 :0  收藏:6  打赏:0  评论:0
      本篇博文笔记于 2022-01-18 13:31:36 首发,最晚于 2022-01-20 07:58:12 修改。
    15. 我的 Python.color() (Python 色彩打印控制)
      ( 4159 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/123194259
      点赞:2   踩 :0  收藏:8  打赏:0  评论:0
      本篇博文笔记于 2022-02-28 22:46:21 首发,最晚于 2022-03-03 10:30:03 修改。
    16. 罗马数字转换器(用罗马数字构造元素的值取模实现)
      ( 4149 阅读)
      博文地址:https://blog.csdn.net/m0_57158496/article/details/122608526
      点赞:0   踩 :0  收藏:0  打赏:0  评论:0
      本篇博文笔记于 2022-01-20 19:38:12 首发,最晚于 2022-01-21 18:32:02 修改。
    推荐条件 阅读量突破四千
    (更多热博,请点击蓝色文字跳转翻阅)

    回页首


    老齐漫画头像

    精品文章:

    来源:老齐教室


    Python 入门指南【Python 3.6.3】


    好文力荐:


    CSDN实用技巧博文:


  • 相关阅读:
    区块链下的个人快递件隐私保护系统研究
    云服务器上部署仿牛客网项目
    C++面向对象编程题 第22题
    学信息系统项目管理师第4版系列33_信息化发展
    代码简洁之道:对象转换神器MapStruct
    【Linux】快捷键
    【数据结构】二叉树详解(下篇)
    基于机器视觉的移动消防机器人(三)--软件设计
    springmvc请求源码流程解析(二)
    浅谈go语言的错误处理
  • 原文地址:https://blog.csdn.net/m0_57158496/article/details/134321362