91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python實現機器人卡牌的方法

發布時間:2021-04-06 10:26:59 來源:億速云 閱讀:199 作者:小新 欄目:開發技術

小編給大家分享一下python實現機器人卡牌的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

涉及以下知識點:

1.文件讀取
2.字典
3.turtle庫的使用
4.控制語句 

實現的效果

python實現機器人卡牌的方法

代碼

#!/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實現機器人卡牌的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宾川县| 龙川县| 大港区| 玛纳斯县| 化隆| 金乡县| 武威市| 甘谷县| 左贡县| 高州市| 舟山市| 东港市| 彰化县| 垦利县| 尼勒克县| 齐河县| 陇南市| 西乌珠穆沁旗| 永福县| 静海县| 孙吴县| 响水县| 许昌县| 纳雍县| 永胜县| 克拉玛依市| 库伦旗| 延津县| 邵武市| 嘉定区| 娄烦县| 英吉沙县| 乌鲁木齐市| 大兴区| 博乐市| 屯门区| 资阳市| 黄龙县| 恩平市| 平谷区| 揭东县|