- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我终于完成了西蒙游戏,但我对如何完成序列有些疑问。
编辑:正如您所要求的,我已经编辑了我的帖子。在这里,我将发布我的代码,就像在这篇文章之前一样。这是我的实际问题。
1)我不知道如何在每一回合后向序列中添加一个数字。
2)第一个回合工作正常,但我不知道如何开始下一个回合,我尝试在检查序列后再次调用该函数,但没有成功。
两件事的必要代码:
from Tkinter import *
import Tkinter
import random
base = Tkinter.Tk()
fr = Tkinter.Frame(base, bg='black', width='238', height='250')
score = Tkinter.Label(base, bg='black', fg='white', text='Score:')
score.place(x = 30, y = 15)
s = 0
scoreNum = Tkinter.Label(base, bg='black', fg='white', text = s)
scoreNum.place(x = 70, y = 15)
clicks = []
color = 0
def yellowClick():
yellow.configure(activebackground='yellow3')
yellow.after(500, lambda: yellow.configure(activebackground='yellow'))
global clicks
global color
color = 1
clicks.append(color)
yellow = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='yellow',
bg='yellow3', command = yellowClick)
yellow.place(x = 30, y = 50)
def blueClick():
blue.configure(activebackground='medium blue')
blue.after(500, lambda: blue.configure(activebackground='blue'))
global clicks
global color
color = 2
clicks.append(color)
blue = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='blue',
bg='medium blue', command = blueClick)
blue.place(x = 125, y = 50)
def redClick():
red.configure(activebackground='red3')
red.after(500, lambda: red.configure(activebackground='red'))
global clicks
global color
color = 3
clicks.append(color)
red = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='red',
bg = 'red3', command = redClick)
red.place(x = 30, y = 145)
def greenClick():
green.configure(activebackground='dark green')
green.after(500, lambda: green.configure(activebackground='green4'))
global clicks
global color
color = 4
clicks.append(color)
green = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='green4',
bg='dark green', command = greenClick)
green.place(x = 125, y = 145)
def scoreUp():
global s
s = s + 1
scoreNum.configure(text = s)
sequence = []
def checkSequence():
global clicks
global sequence
if clicks == sequence:
scoreUp()
def showSequence():
global sequence
global clicks
global check
r = random.randint(1, 4)
if r == 1:
yellow.configure(bg='yellow')
yellow.after(1000, lambda: yellow.configure(bg='yellow3'))
sequence.append(r)
base.after(5000, checkSequence)
elif r == 2:
blue.configure(bg='blue')
blue.after(1000, lambda: blue.configure(bg='medium blue'))
sequence.append(r)
base.after(5000, checkSequence)
elif r == 3:
red.configure(bg='red')
red.after(1000, lambda: red.configure(bg='red3'))
sequence.append(r)
base.after(5000, checkSequence)
elif r == 4:
green.configure(bg='green4')
green.after(1000, lambda: green.configure(bg='dark green'))
sequence.append(r)
base.after(5000, checkSequence)
base.after(2000, showSequence)
fr.pack()
base.resizable(False, False)
base.mainloop()
checkSequence 函数是按时间激活的,因为我找不到其他方法来执行此操作。
最佳答案
我已经回答了这个问题,但你仍然遇到一些问题,这里是完整的代码。我提高了效率并解决了问题:)
这是有效的,我已经测试过了。有什么需要了解的请评论
import Tkinter # you don't need to import Tkinter again, from ... import * moves all the functions from ... into your program
import random
base = Tkinter.Tk()
fr = Tkinter.Frame(base, bg='black', width='238', height='250')
fr.pack()
score = Tkinter.Label(base, bg='black', fg='white', text='Score:')
score.place(x = 30, y = 15)
scoreNum = Tkinter.Label(base, bg='black', fg='white', text = 0)
scoreNum.place(x = 70, y = 15)
global sequence
global clicks
global s
sequence = []
clicks = []
s = 0
yellow = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='yellow',
bg='yellow3', command = lambda *args: Click(yellow, "yellow", "yellow3", 1))
blue = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='blue',
bg='medium blue', command = lambda *args: Click(blue, "blue", "medium blue", 2))
red = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='red',
bg = 'red3', command = lambda *args: Click(red, "red", "red3", 3))
green = Tkinter.Button(base, bd='0', highlightthickness='0',
width='7', height='5', activebackground='green4',
bg='dark green', command = lambda *args: Click(green, "green", "dark green", 4))
yellow.place(x = 30, y = 50)
blue.place(x = 125, y = 50)
red.place(x = 30, y = 145)
green.place(x = 125, y = 145)
def Click(button, colour1, colour2, number): # these arguments change so that you don't have to copy the function 10 times
global clicks
yellow.configure(activebackground=colour2)
yellow.after(500, lambda: yellow.configure(activebackground=colour1))
clicks.append(number)
checkSequence() # why not do this straight away?
def checkSequence():
global clicks
global sequence
global s
print("clicks: "+str(clicks)) # debug
print("sequence: "+str(sequence))
if clicks != sequence[:len(clicks)]: # if all their clicks so far e.g. [1, 2, 4, 3] DONT fit with the sequence e.g. [3, 2, 4, 3, 2, 1]
print(" ...Incorrect!")
s = 0
scoreNum.configure(text = 0)
sequence = []
clicks = []
base.after(1000, showSequence) # now move to the next value in the sequence
elif clicks == sequence: # they have completed a sequence
print(" ...Match!")
s = s + 1
scoreNum.configure(text = s)
clicks = []
base.after(1000, showSequence) # now move to the next value in the sequence
def showSequence():
global sequence
global clicks
r = random.randint(1, 4)
if r == 1:
yellow.configure(bg='yellow')
yellow.after(1000, lambda: yellow.configure(bg='yellow3'))
elif r == 2:
blue.configure(bg='blue')
blue.after(1000, lambda: blue.configure(bg='medium blue'))
elif r == 3:
red.configure(bg='red')
red.after(1000, lambda: red.configure(bg='red3'))
elif r == 4:
green.configure(bg='green')
green.after(1000, lambda: green.configure(bg='dark green'))
sequence.append(r) # you don't need this in all the if statements, it always happens
base.after(100, showSequence)
base.resizable(False, False)
base.mainloop()
注意:我使用的是 python 3.4.1,所以我将所有 tkinter 更改为 Tkinter
关于Python西蒙游戏: I Got Stuck Finishing the Sequence,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39309130/
给定一个 Sequence of Sequences 类型,如何将其转换为单个扁平化 Sequence 类型?考虑以下 Ceylon 代码: Integer[] range(Integer max)
出于学习目的,我正在尝试使用 F# 以序列形式运行模拟。从一系列随机数开始,如果状态不依赖于先前的状态,map 是生成状态序列的直接方法。我遇到问题的地方是当我尝试做类似的事情时: State(i+1
我正在 DynamoDB 上开发论坛。 有一个帖子表,其中包含线程中的所有帖子。我需要对帖子中的顺序有一个概念,即我需要知道哪个帖子先出现,哪个后出现。 我的服务将在分布式环境中运行。 我不确定使用时
我正在 DynamoDB 上开发论坛。 有一个帖子表,其中包含线程中的所有帖子。我需要对帖子中的顺序有一个概念,即我需要知道哪个帖子先出现,哪个后出现。 我的服务将在分布式环境中运行。 我不确定使用时
在 Z3 中,它支持 String 和 Sequence。但是 Z3py 是否也支持它们,或者我们必须使用 Python 中的字符串或列表?从最新的版本来看,新版本好像确实支持了String和Sequ
我是 Clojure 世界的新手,我遇到了一个问题。我得到了一个 LazySeq,看起来像这样(实际上更长) values = (("Brand1" "0") ("Brand2" "15") ("Br
我正在开发一个用于文本生成的序列到序列模型 ( paper )。我没有在解码器端使用“教师强制”,即 t0 时解码器的输出被馈送到 t1 时解码器的输入。 现在,实际上,解码器(LSTM/GRU)的输
Rust 中的规则是什么,类似于这里描述的规则http://en.cppreference.com/w/cpp/language/eval_order对于 C++? 目前我凭经验发现, 1) 函数的参
我当前的代码: import re from Bio.Seq import Seq def check_promoter(binding_element,promoter_seq): promoter
您好,此代码旨在存储使用 open cv 绘制的矩形的坐标,并将结果编译为单个图像。 import numpy as np import cv2 im = cv2.imread('1.jpg') im
在我的程序中,我有一个正则表达式,它确保输入字符串至少有一个字母和一个数字字符,并且长度在 2 到 10 之间。 Pattern p = Pattern.compile("^(?=.*\\d)(?=.
我正在查看 Google 的免费机器学习速成类(class),并尝试根据他们类(class)的第一部分制作一个预测模型。但是,在输入函数中,有一个字典,我不断收到此错误, in my_input_fn
我想使用 Boost 的 any_range 来处理多个异构数据范围。我的数据范围类型称为 fusion vector ,例如: typedef vector TypeSequence 鉴于这样的类型
我正在使用 SimpleJdbcInsert 作为, SimpleJdbcInsert simpleJdbcInsert = new SimpleJdbcInsert(dataSource).with
我正在尝试通过从我的数据创建 .phy 文件来创建系统发育树。 我有一个数据框 ndf= ESV trunc 1 esv1 TACGTAGGTG... 2 esv2 TACGGAGGGT... 3 e
这可能真的很简单,但我正处于 Rx 学习曲线的底部。我花了几个小时阅读文章、观看视频和编写代码,但我似乎对一些看起来应该非常简单的事情有心理障碍。 我正在从串行端口收集数据。我已使用 Observab
我正在将一些模块从 v8 迁移到 v10,我有这个模型: class SearchInfoPartnerSeniat(models.TransientModel): _name = "search.i
我尝试添加一个新的“自定义”序列到我的Marten DB中,以获取新用户的用户ID(在注册过程中)。。后来,我能够访问下一个序列值,如下所示:。问题出在上面的代码中:在第一次运行时:将userid_s
我在 rosettacode 遇到了这个代码 my @pascal = [1], { [0, |$_ Z+ |$_, 0] } ... Inf; .say for @pascal[^4]; # ==>
我不明白为什么这个程序有效: my $supply = Supply.interval: 1; react { whenever $supply { put "Got $^a" }
我是一名优秀的程序员,十分优秀!