Python游戏编程(二)Dragon Realm

本文介绍了Python制作的文本游戏Dragon Realm,涉及流程图设计、函数使用、多行字符串、while循环、布尔操作符和变量作用域等概念。玩家需选择进入两个山洞之一,每个选择对应不同的结果。文章通过实例详细解析了游戏中的编程技术。
摘要由CSDN通过智能技术生成

这篇介绍第二个游戏,叫做Dragon Realm,就是简单的文本游戏,就像二选一一样,通过time模块中的函数来延迟时间。

游戏中有两个山洞,一个有宝藏,另一个则有厄运,玩家选择进入哪个山洞。

源代码:

import random
import time

def displayIntro():
    print("""You are in a land full of dragons.In front of you,
          you see two caves. In one cave, the dragon is friendly
          and will share his treasure with you. The other dragon
          is greedy and hungry, and eat you on sight.""")
    print()
    
def chooseCave():
    cave = ''
    while cave != '1' and cave != '2':
        print('Which cave will you go into?(1 or 2)')
        cave = input()
    return cave
def checkCave(chosenCave):
    print('You approach the cave...')
    time
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值