Page 1 of 1

Please use pygame or other tools to create a simple game for my final project! Thank you very much!!! Here is the instru

Posted: Mon May 09, 2022 5:51 am
by answerhappygod
Please use pygame or other tools to create a simple
game for my final project!
Thank you very much!!!
Here is the instruction:
Project Ideas
Implementing a simple game (e.g., a card game for a user to play
against a computer or an ASCII adventure game)
Main Program
Your final project must include the following to receive full
credit:
Variables and assignments (to be honest, we’d be
impressed if you managed not to include this part!)
Conditional statements (i.e., if/elif/else)
Nested Loops (with for or while loops, in the same
function/method)
Functions/Methods (including parameters and return)
Strings
Use a module (either one you’ve written, or a built-in Python
module like math)
Substantive use of a complex data structure (i.e., lists,
dictionaries, tuples, or sets OR define your own class. An element
of substantive use is mutating the data structure as your program
runs.
In general, your code needs to be ‘‘parameterized’’ in some way –
every time the main file is run there should be some level of
variation in the output (e.g. randomization, user input, etc.).
Global variables are highly discouraged, as has been the case all
semester.