About 36,300 results
Open links in new tab
  1. python - A text based DND game, (im 3 months into coding)

    Mar 14, 2022 · In Python, PEP8 recommends that names like classChoice are instead class_choice. I encourage you to work on these, and once you've moved everything to …

  2. python - Bank accounts - names, balances and passwords - Code …

    Sep 5, 2015 · Use some whitespace between your operators. Read over Python's official style guide, PEP8 to see all the rules one must follow when writing correct Python. instead of %s …

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

    Apr 10, 2019 · Python's late binding on all names (include modules, classes, and unattached methods) negates many of the benefits of pervasive object use in other languages. More …

  4. python - Beginner - OOP Project - Airline reservation system

    Oct 8, 2020 · Hi I just finished a VERY Basic airline reservation system. Wanted some feedback please let me know what you all think, if I am obfuscating information or passing parameters …

  5. Coffee machine in OOP Python 3 - Code Review Stack Exchange

    May 7, 2020 · For simplicity, since we envision currently the only type of actor interfacing with the coffee machine is a person, we could have this class incorporate the input/output interactions …

  6. ATM code for account balance, withdrawals and deposits

    Sep 10, 2020 · 10 I'm relatively new to python and coding in general, and I decided that this would be a good little practice project. This was also my first project involving classes and objects so …

  7. Advanced Python Grade Calculator - Code Review Stack Exchange

    Apr 29, 2024 · In this project, I've developed an Advanced Grade Calculator that not only calculates the average grade but also accounts for credit hours and predicts future …

  8. python - Ticket Booking Program - Code Review Stack Exchange

    Jun 4, 2020 · I am a beginner in Python, as you will see looking at my notes. This is a program that simulates seat booking in a cinema for example. The program stores the users name as a …

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

    Nov 7, 2019 · I have just finished learning basic-intermediate Python subjects and wanted to test myself. This Battleship game is the third game i have written. import random def …

  10. python - Structure of inheritance between Animal classes and …

    Oct 31, 2016 · 4 I'm trying to do some basic inheritance between the 3 classes and use some simple methods, and I'm looking to learn what should be the correct structure between them …