您好,登錄后才能下訂單哦!
小編給大家分享一下python實現機器人卡牌的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
涉及以下知識點:
1.文件讀取
2.字典
3.turtle庫的使用
4.控制語句
實現的效果
代碼
#!/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實現機器人卡牌的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。