All Questions
46 questions
1
vote
1
answer
194
views
Version 2 of my Python Password Manager
I am still just starting out with python and just finished learning about classes, with no further understanding on many python modules. With this in mind, this is one of the biggest/hardest things I ...
3
votes
2
answers
160
views
Simple Blackjack Card Game - First OOP Code
Blackjack card game with hit and stand.
I wasn't allowed to use functions outside of classes in the code.
I had some difficulty with __str__ dunder method on ...
5
votes
2
answers
211
views
OOP Matchsticks Game [Update]
I made the changes that were suggested to improve the program in the previous version. I would like to know if it is decent now or is there something to tweak.
...
7
votes
2
answers
2k
views
Rock, Paper, Scissors game in Python with OOP
I am still practising object oriented programming and I decided to do the rock-paper-scissors game as a project.
I listen to constructive criticism to improve the program.
...
5
votes
1
answer
1k
views
Matchsticks game in Python
I made the following game in Python applying object oriented programming and I would like to know if there is something to improve.
PS: My native language is Spanish, if you see something wrong ...
5
votes
1
answer
76
views
Othello game in Tk
I've recently reached a milestone for my Othello clone. This is my first Python project and the farthest I've come to a full program beyond small scripts and little automations.
I'd love for you to ...
3
votes
2
answers
2k
views
Chess game object-oriented
This is an object-oriented Chess game. So far, I have implemented the pawn and board functionalities and I would love to get a ...
6
votes
1
answer
1k
views
Python 3 Curses Terminal Tetris
I've been learning programming own my for a couple of years mainly using python, and
I've created a tetris-like command line game using Python's Curses library.
The game seems to function as intended; ...
10
votes
4
answers
8k
views
ATM code for account balance, withdrawals and deposits
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 I kept their ...
3
votes
1
answer
129
views
Command line calculator utilizing OOP and RPN
I have implemented a console calculator.
It has support for variables over a set of integers and the following operations: multiplication, integer division, exponentiation, addition and subtraction. ...
25
votes
2
answers
8k
views
Zork-like text adventure w/ Python
I've been using Python for around 3 months and decided to make a simple text adventure game for fun and to exercise a lot of ideas I've been learning about. I've just recently learned about classes ...
9
votes
1
answer
440
views
A Python based Tic-Tac-Toe game
As a basic project, I've programmed the game of noughts and crosses (tic-tac-toe) using classes. I made three classes: Board, ...
8
votes
2
answers
950
views
O.O. Teacher List
After the feedback I got on my previous question, I decided to try one more program to see if I understand O.O.P. The idea for this is also based off the project I am working on im my class for this ...
4
votes
1
answer
144
views
O.O. Style Palindrome Checker
I am beginning to learn about object oriented programming in my programming class, and to make sure I had all the ideas down, I made a small palindrome checker program. It works by checking if the ...
8
votes
1
answer
189
views
Object oriented python
I am starting my adventure with Python and object oriented programming.
I wrote a script for salting and hashing password. My main goal is practice with OOP, not cryptography.
I know there is no ...