当前位置:   article > 正文

chatgpt赋能python:简单好玩的Python程序——让你爱上编程

chatgpt赋能python:简单好玩的Python程序——让你爱上编程

简单好玩的Python程序——让你爱上编程

Python语言在最近的几年迅速崛起成为最流行的编程语言之一。它的语法简单易懂,代码可读性强,是初学者学习编程的极佳选择。今天我想分享一些简单好玩的Python程序,让你体验Python编程的乐趣。

代码让程序说话

Python中有一个库叫作Text-to-Speech(TTS),它可以让你的代码变得有声有色。以下是一个简单的例子,能够将你输入的文本转换为机器语音。

import pyttsx3 

engine = pyttsx3.init()
engine.say("Hello, How are you?")
engine.runAndWait()
  • 1
  • 2
  • 3
  • 4
  • 5

在控制台唱一首歌

你或许可以想象到Python的控制台只能显示文字,但其实你可以在控制台播放音乐。使用 pygame,你可以在Python控制台里播放音乐。

import pygame

pygame.init()
pygame.mixer.music.load("song.mp3")
pygame.mixer.music.play()
  • 1
  • 2
  • 3
  • 4
  • 5

计算你的生肖与星座

你可以使用Python来编写自己的生肖和星座计算器。以下是代码示例:

def chinese_zodiac(year):
    zodiacs = ['鼠', '牛', '虎', '兔', '龙', '蛇', '马', '羊', '猴', '鸡', '狗', '猪']
    return zodiacs[year % 12]

def star_constellation(month, day):
    constellations = [ '摩羯座', '水瓶座', '双鱼座', '白羊座', '金牛座', '双子座', '巨蟹座', '狮子座', '处女座', '天秤座', '天蝎座',                      '射手座', '摩羯座']
 
    if (day < 1) or (day > 31):
        return "Invalid Date!"
 
    if month == 2:
        if day >= 20:
            return constellations[1]
        else:
            return constellations[0]
 
    elif month == 3:
        if day >= 21:
            return constellations[2]
        else:
            return constellations[1]
 
    elif month == 4:
        if day >= 20:
            return constellations[3]
        else:
            return constellations[2]
 
    elif month == 5:
        if day >= 21:
            return constellations[4]
        else:
            return constellations[3]
 
    elif month == 6:
        if day >= 21:
            return constellations[5]
        else:
            return constellations[4]
 
    elif month == 7:
        if day >= 22:
            return constellations[6]
        else:
            return constellations[5]
 
    elif month == 8:
        if day >= 23:
            return constellations[7]
        else:
            return constellations[6]
 
    elif month == 9:
        if day >= 23:
            return constellations[8]
        else:
            return constellations[7]
 
    elif month == 10:
        if day >= 23:
            return constellations[9]
        else:
            return constellations[8]
 
    elif month == 11:
        if day >= 23:
            return constellations[10]
        else:
            return constellations[9]
 
    elif month == 12:
        if day >= 22:
            return constellations[11]
        else:
            return constellations[10]
 
    elif month == 1:
        if day >= 20:
            return constellations[0]
        else:
            return constellations[11]
  • 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

最后的结论

Python拥有众多有用的库和模块,可以让你轻松编写简单而有趣的程序。上述介绍的例子只是冰山一角,还有许多其他好玩的程序等待你来探索。Python编程对于初学者而言简单易懂,适合用于学习基础和为自己的项目打下基础。

如果您想深入学习Python,可以查看在线资源或者参加Python培训课程。开始编写你自己的Python程序吧,让编程变得更简单、更有趣!

最后的最后

本文由chatgpt生成,文章没有在chatgpt生成的基础上进行任何的修改。以上只是chatgpt能力的冰山一角。作为通用的Aigc大模型,只是展现它原本的实力。

对于颠覆工作方式的ChatGPT,应该选择拥抱而不是抗拒,未来属于“会用”AI的人。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/289546
推荐阅读
相关标签
  

闽ICP备14008679号