python编程入门与案例详解,python编程入门经典

大家好,本文将围绕python编程基础与案例集锦展开说明,python编程入门与案例详解是一个很多人都想弄明白的事情,想搞清楚python编程入门经典需要先了解以下几个事情。

python编程入门与案例详解,python编程入门经典_第1张图片

对于Python学习者来说,能够熟练的掌握Python中简洁而高效的编程技巧,不仅能够提升程序的效率,更重要的是体现出编程者高超的编程能力。

今天,小编就为大家分享十个Python的小案例,每个案例都有两种解决方法,第一种方法相对小白,第二种方法则是属于有经验的高手写法用python绘制满天星代码。案例虽小,但是却蕴含着Python编程的技巧,一起来看看吧。

1.闹钟

编写一个创建闹钟的Python脚本。

你可以使用date-time模块创建闹钟,以及playsound库播放声音。

from datetime import datetime   
from playsound import playsound
alarm_time = input("Enter the time of alarm to be set:HH:MM:SS\n")
alarm_hour=alarm_time[0:2]
alarm_minute=alarm_time[3:5]
alarm_seconds=alarm_time[6:8]
alarm_period = alarm_time[9:11].upper()
print("Setting up alarm..")
while True:
    now = datetime.now()
    current_hour = now.strftime("%I")
    current_minute = now.strftime("%M")
    current_seconds = now.strftime("%S")
    current_period = now.strftime("%p")
    if(alarm_period==current_period):
        if(alarm_hour==current_hour):
            if(alarm_minute==current_minute):
                if(alarm_seconds==current_seconds):
                    print("Wake Up!")
                    playsound('audio.mp3') ## download the alarm sound from link
                    break

2.文字冒险游戏

编写一个有趣的Python脚本,通过为路径选择不同的选项让用户进行有趣的冒险。

name = str( input("Enter Your Mame\n"))
print(f"{name} you are stuck in a forest.Your task is to get out from the forest withoutdieing")
print("You are walking threw forest and suddenly a wolf comes in your way.Now Youoptions.")
print("1.Run 2. climb The Nearest Tree ")
user = int(input("choose one option 1 or 2"))
if user = 1:
    print("You Died!!")
elif user = 2:
    print("You Survived!!")
else:
    print("Incorrect Input")
#### Add a loop and increase the story a

你可能感兴趣的:(服务器,运维,java)