About 65,000 results
Open links in new tab
  1. python - Simple top down shooter game - Code Review Stack …

    Mar 4, 2016 · This one of my first Python games in PyGame I decided to make for fun. Basically, you control a from top down perspective and shoot people in a maze. This is the rewrite of the …

  2. python - Brute-force cracking a wireless network password - Code …

    Nov 30, 2022 · What the code basically does is loop through a range of possible 8 numerical combinations and input every possibility to try and connect to a Wi-Fi network and check if the …

  3. Simple Morse Code Converter (Python) - Code Review Stack …

    Apr 16, 2021 · This looks like Java code that was directly translated into Python and doesn't utilise some of Python's key features. Morse Code dict See the comments on your question: We …

  4. python - Space shooter game using pygame - Code Review Stack …

    Apr 1, 2024 · As a weird python community thing, please prefer if pos is not None:. Or use ruff or some other linter to help you with odd cases like that. Also, here it would be simpler to test the …

  5. Simple Python turn based battle game - Code Review Stack …

    Feb 20, 2020 · 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 …

  6. python - A Simple Battleship Game - Code Review Stack Exchange

    Nov 12, 2019 · It's worth noting _ is not a special variable, but by convention shows I'm not using that value (I just want the code to repeat number_of_ships times.) I ran a quick test and over 1 …

  7. Simple Blackjack game in Python - Code Review Stack Exchange

    Dec 15, 2016 · I am trying to create a simple Blackjack game. I am using GIST because the code sample takes forever to use. Current code: from random import randint def card_deck(): #sets …

  8. python - 'Snakes and Ladders' game - Code Review Stack Exchange

    Sep 26, 2017 · There is this amazing thing called PEP, which helps all python programmers to make the code more readable, if we adhere this we can improve the following: Naming should …

  9. python - Implementing a Steepest Descent Algorithm - Code …

    May 24, 2020 · Thanks for contributing an answer to Code Review Stack Exchange! Please be sure to answer the question. Provide details and share your research! But avoid … Asking for …

  10. python - Simple antivirus - Code Review Stack Exchange

    Mar 23, 2020 · I wrote a simple antivirus in Python and would love feedback for additional ideas to implement, as well as general code review. So far it has a FileScanner that checks against a …