About 32,400 results
Open links in new tab
  1. python - Flappy Bird game clone for a beginners' programming …

    Aug 29, 2014 · 70 I'll soon begin teaching a beginners' programming class. It's voluntary, so I thought I'd make it interesting by teaching Python programming and then introduce the kids to …

  2. 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 …

  3. Lottery Analysis (Python Crash Course, exercise 9-15)

    Jul 5, 2023 · 4 I was working on Python Crash Course, exercise 9-15: 'Lottery Analysis'. It took me a very long time to get it to work. The reason it took that long is I wanted to use my existing …

  4. python - Simulating an OOP Coffee Machine - Code Review Stack …

    Apr 12, 2020 · The function fill allows you to add to the supplies in the CoffeeMachine class. Remaining display the current quantities of supplies for each of the materials in the coffee …

  5. python - first pizza order program - Code Review Stack Exchange

    Sep 27, 2020 · As you're beginning with programming, I'd suggest gathering associated resources into a class, instead of using a dictionary. For eg. a Customer class, with name, phone etc. …

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

    Oct 31, 2016 · 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 …

  7. Python class to implement a list with a size limit

    Mar 28, 2017 · 9 I am currently working through a python course about objected oriented programming. I was given this first assignment to work on: Create a simple class, MaxSizeList, …

  8. Student report card management Python program

    Nov 28, 2021 · The program is designed to take data from a MySQL database, using mysql-connector-python, and print it as a table in Python using the texttable module. The program …

  9. python - Model cars as classes - Code Review Stack Exchange

    I am learning about object oriented programming in Python using classes. I have attached an image of what I had in mind when structuring my classes. This is supposed script model cars. I …

  10. 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 …