/rps-python

rock paper scissors in python

Primary LanguagePythonMozilla Public License 2.0MPL-2.0

rps-python

rock paper scissors in python

different resources and reqirement to build a CLI(commmand line rps game )

1.Basic knowlege of python: you can find basic knowlege of python on https://www.w3schools.com/python/ (w3schools),and MDN(moxilla developers network)https://developer.mozilla.org/en-US/docs/Glossary/Python
2. understanding how python loops work loop works both for loop and while loop https://tinyurl.com/tf6kxa82(for loop) , (while loop)https://tinyurl.com/4e8bjjj5
3. understanding how the game works : this link describe how to play the game as the first step in soving a problem is identifying and understanding the problem
(https://en.wikipedia.org/wiki/Rock_paper_scissors https://www.youtube.com/watch?v=ND4fd6yScBM https://www.wikihow.com/Play-Rock,-Paper,-Scissors)
4. understand python modules expecially the random module as it the core module that will be used in making your game (https://www.w3schools.com/python/module_random.asp)
5. understanding how to use random choice function to select an item from a list : https://pynative.com/python-random-choice/