石头剪刀布python代码_Python[Tkinter]石头布剪刀GUI

2024-02-02 14:50

本文主要是介绍石头剪刀布python代码_Python[Tkinter]石头布剪刀GUI,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

我目前正在开发Python[Tkinter]石头布剪刀GUI应用程序。到目前为止,我已经能够构建界面,甚至允许用户进行选择。唯一的问题是我不知道如何把电脑的决定打印出来。我想能够更新一个标签或上传一个图像,这取决于计算机选择了什么。例如,用户单击rock,我希望能够在窗口中打印一个岩石的图像,或单词rock,并在下次用户选择新选项(如剪刀或纸张)并重置时更新它。所以简单地说,我希望能够在用户每次单击按钮时创建一个更新的图像或/文本(标签)。

P、 我使用pygame的唯一原因是允许我的应用程序与音乐一起运行。我还提供了下面的应用程序截图。在

代码:#Written by : Pamal Mangat.

#Written on : Monday, July 27th, 2015.

#Rock Paper Scissors : Version 1.2 (Tkinter [GUI] addition)

from tkinter import *

from sys import *

from PIL import Image, ImageTk

import pygame as py

import os

from random import randrange

py.init()

#Function runs the actual game.

def runGame(startWindow):

#Close [startWindow] before advancing:

startWindow.destroy()

startWindow.quit()

master = Tk()

master.title('Lets Play!')

#Function carries on the remainder of the game.

def carryGame(button_id):

result = StringVar()

printResult = Label(master, textvariable = result, font='Bizon 32 bold', bg='PeachPuff2')

printResult.place(x=150, y=300)

#Computer's move:

random_Num = randrange(1,4)

if random_Num == 1:

computer_Move = 'Rock'

elif random_Num == 2:

computer_Move = 'Paper'

else:

computer_Move = 'Scissors'

if button_id == 1:

player_Move = 'Rock'

elif button_id == 2:

player_Move = 'Paper'

else:

player_Move = 'Scissors'

#Rock button

rock_Button = Button(master, width=15, height=7, command=lambda:carryGame(1))

rock_photo=PhotoImage(file=r'C:\Users\Pamal\Desktop\Documents\Python Folder\Python Projects\Rock, Paper, Scissors\V 1.2\Images\rock.png')

rock_Button.config(image=rock_photo,width="120",height="120")

rock_Button.place(x=17, y=70)

#Paper button

paper_Button = Button(master, width=15, height=7, command=lambda:carryGame(2))

paper_photo=PhotoImage(file=r'C:\Users\Pamal\Desktop\Documents\Python Folder\Python Projects\Rock, Paper, Scissors\V 1.2\Images\paper.png')

paper_Button.config(image=paper_photo,width="120",height="120")

paper_Button.place(x=167, y=70)

#Scissors button

scissors_Button = Button(master, width=15, height=7, command=lambda:carryGame(3))

scissors_photo=PhotoImage(file=r'C:\Users\Pamal\Desktop\Documents\Python Folder\Python Projects\Rock, Paper, Scissors\V 1.2\Images\scissors.png')

scissors_Button.config(image=scissors_photo,width="120",height="120")

scissors_Button.place(x=317, y=70)

label_1 = Label(master, text='Please make your selection-', font='Bizon 20 bold', bg='PeachPuff2')

label_1.pack(side=TOP)

label_2 = Label(master, text='The computer picked:', font='Helvetica 22 bold', bg='PeachPuff2')

label_2.place(x=70, y=240)

#Locks window size

master.maxsize(450, 400)

master.minsize(450, 400)

#Sets window background to PeachPuff2

master.config(background='PeachPuff2')

master.mainloop()

def startScreen():

#Plays music for the application

def playMusic(fileName):

py.mixer.music.load(fileName)

py.mixer.music.play()

#Start Window

startWindow = Tk()

startWindow.title('[Rock] [Paper] [Scissors]')

#Imports image as title

load = Image.open(r'C:\Users\Pamal\Desktop\Documents\Python Folder\Python Projects\Rock, Paper, Scissors\V 1.2\Images\title.png')

render = ImageTk.PhotoImage(load)

img = Label(startWindow, image=render, bd=0)

img.image = render

img.place(x=-100, y=-65)

clickToPlay = Button(startWindow, text='Play!', width=8, font='Bizon 20 bold', bg='Black', fg='Yellow', relief=RIDGE, bd=0, command=lambda:runGame(startWindow))

clickToPlay.place(x=75, y=125)

#Credit

authorName = Label(startWindow, text='Written by : Pamal Mangat', font='Times 6 bold', bg='Black', fg='Yellow')

authorName.place(x=2, y=230)

versionNum = Label(startWindow, text='[V 1.2]', font='Times 6 bold', bg='Black', fg='Red')

versionNum.place(x=268, y=230)

#Start Screen Music

playMusic(r'C:\Users\Pamal\Desktop\Documents\Python Folder\Python Projects\Rock, Paper, Scissors\V 1.2\Audio\title_Song.mp3')

#Locks window size

startWindow.maxsize(300, 250)

startWindow.minsize(300, 250)

#Sets window background to black

startWindow.config(background='Black')

startWindow.mainloop()

startScreen()

截图:

启动屏幕的图像:

mc0cH.png

在开始屏幕上单击“播放”后打开的窗口的图像:

6P3Gs.png

蓝色圆圈区域是我希望显示计算机决策的地方。在

这篇关于石头剪刀布python代码_Python[Tkinter]石头布剪刀GUI的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/671064

相关文章

Python脚本实现自动删除C盘临时文件夹

《Python脚本实现自动删除C盘临时文件夹》在日常使用电脑的过程中,临时文件夹往往会积累大量的无用数据,占用宝贵的磁盘空间,下面我们就来看看Python如何通过脚本实现自动删除C盘临时文件夹吧... 目录一、准备工作二、python脚本编写三、脚本解析四、运行脚本五、案例演示六、注意事项七、总结在日常使用

Python将大量遥感数据的值缩放指定倍数的方法(推荐)

《Python将大量遥感数据的值缩放指定倍数的方法(推荐)》本文介绍基于Python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处理,并将所得处理后数据保存为新的遥感影像... 本文介绍基于python中的gdal模块,批量读取大量多波段遥感影像文件,分别对各波段数据加以数值处

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Python进阶之Excel基本操作介绍

《Python进阶之Excel基本操作介绍》在现实中,很多工作都需要与数据打交道,Excel作为常用的数据处理工具,一直备受人们的青睐,本文主要为大家介绍了一些Python中Excel的基本操作,希望... 目录概述写入使用 xlwt使用 XlsxWriter读取修改概述在现实中,很多工作都需要与数据打交

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

利用Python编写一个简单的聊天机器人

《利用Python编写一个简单的聊天机器人》这篇文章主要为大家详细介绍了如何利用Python编写一个简单的聊天机器人,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 使用 python 编写一个简单的聊天机器人可以从最基础的逻辑开始,然后逐步加入更复杂的功能。这里我们将先实现一个简单的

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一