python做卡牌游戏_python实现机器人卡牌

本文介绍了如何使用Python的turtle库和文件读取功能,动态展示机器人卡牌的图像和属性信息。通过读取'cards.txt'文件,将数据存储到字典中,用户可以选择或随机选取机器人,显示其详细属性。代码包括控制语句、字典操作和turtle库的图形绘制。
摘要由CSDN通过智能技术生成

介绍

这个例子主要利用turtle库实现根据输入动态展示不同机器人的图像和属性信息。

代码部分非原创只是做了些许修改和整理使得更易阅读。

图片和文件资源请访问git仓库获取:链接地址

涉及以下知识点:

1.文件读取

2.字典

3.turtle库的使用

4.控制语句

实现的效果

2019106102906764.gif?201996102914

代码

#!/bin/python3

from turtle import *

from random import choice

screen = Screen()

screen.setup(400, 400)

screen.bgcolor('white')

penup()

hideturtle()

robots = {}

file = open('resource/cards.txt', 'r')

# 将文件中机器人信息装载到字典中

for line in file.read().splitlines():

name, battery, intelligence, usefulness, speed, image, colour = line.split(', ')

robots[name] = [battery, intelligence, usefulness, speed, image, colour]

screen.register_shape('img/' + image)

file.close()

print('Robots: ', ', '.join(robots.keys()), ' (or random)')

while True:

robot = input("Choose a robot: ")

if robot == "random":

robot = choice(list(robots.keys()))

print(robot)

if robot in robots:

stats = robots[robot]

style = ('Courier', 14, 'bold')

clear()

color(stats[5])

goto(0, 100)

shape('img/' + stats[4])

setheading(90)

# 将当前位置上的形状复制到画布上

stamp()

setheading(-90)

forward(70)

write('Name: ' + robot, font=style, align='center')

forward(25)

write('Battery: ' + stats[0], font=style, align='center')

forward(25)

write('Intelligence: ' + stats[1], font=style, align='center')

forward(25)

write('Usefulness: ' + stats[2], font=style, align='center')

forward(25)

write('Speed: ' + stats[3], font=style, align='center')

else:

print("Robot doesn't exist!")

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

本文标题: python实现机器人卡牌

本文地址: http://www.cppcns.com/jiaoben/python/277714.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值