About 50 results
Open links in new tab
  1. python - Turn-based battle simulator - Code Review Stack Exchange

    Jun 20, 2015 · # Turn Based Battle Simulator # Player and computer take turns to attack each other with different moves # until one is defeated. import random def main(): """Main function that will welcome …

  2. python - Fishing simulator - Code Review Stack Exchange

    Apr 13, 2019 · I'm new to Python, for a school project I created a "fishing simulator". Basically, it is a use of random. I know that my code is repetitive towards the end, but I don't know how to simplify it. i...

  3. Simple Python turn based battle game - Code Review Stack Exchange

    Feb 20, 2020 · f-strings Beginning with Python 3.6, there is a friendlier way of formatting strings. Instead of using "format string" % (tuple_of_args) where the argument and the format codes are separated …

  4. Forex Simulator in Python using pandas and matplotlib

    Jan 3, 2020 · Forex Simulator in Python using pandas and matplotlib Ask Question Asked 5 years, 11 months ago Modified 5 years, 10 months ago

  5. python - My first battle simulator (updated) - Code Review Stack …

    Apr 18, 2020 · I am new and trying to learn programming and have been working on a battle simulator that I hope to eventually develop into a RPG game with characters, areas to explore, etc. I have …

  6. Pokemon Turn Based battle (Python) - Code Review Stack Exchange

    Apr 10, 2019 · This is based off the popular Pokemon Turn Based project (here). GOAL Write a simple game that allows the user and the computer to take turns selecting moves to use against each other. …

  7. python - Monopoly simulator - Code Review Stack Exchange

    May 31, 2016 · Note that committing a Monopoly Simulator v2.py defeats the purpose of the version control system, which is to track the history of your changes to each file.

  8. python - Martingale Betting Simulator - Code Review Stack Exchange

    Sep 15, 2020 · Script simulates the Martingale betting strategy of betting a fixed amount until a loss occurs, at which point the bettor doubles the bet to make up for the loss. This continues until a win …

  9. Game of Life simulator, Python 3 - Code Review Stack Exchange

    Jul 8, 2018 · 6 Using Python 3.7.0, I've programmed a 'Game of Life' simulator. The output is displayed using tkinter. It's not meant to be limited to just Game of Life, though, as it's meant to also be used …

  10. python - Pokemon battle simulator - Code Review Stack Exchange

    Nov 30, 2016 · I learned Python and Pygame and now have coded a few games. For the last few months I have been working on this "luck free" pokemon battle simulator. I feel my program runs well …