I want to make a python game with just the basic python library and Tkinter.. is this possible ? and also where would i go to find the logic behind the Simon Game..the memory part so it makes the buttons click and remember each time?

also this is for a python beginners class final project..would making a Simon game be too much to make for a project that's due in 2 weeks? and have only learned most of the basic python and simple GUI in Tkinter

thanks

The logic behind the memory is not too complex. At the start of the game Create a list containing all of the sequence. And then compare the button press with the value in the correct list position. for example the first button press should be equal to the value stored in yourlist[0]. and so on, if its a match then they are correct...and so on

Chris

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.