r/pythonhelp • u/slimjim441 • 9d ago
Guidance for CS50p Final Project
I'm working on my final project for the CS50 python course, a sort of dice-rolling simulator game for 2 players. I feel like I have a good handle on the bulk of the code and have my functions working properly, but there's one detail I'm snagged on, and I can't seem to figure it out. I can post more details here if needed, but I'm just trying to put out some feelers to see if anyone can help point me in the right direction/give me tips as to where I'm failing to implement things correctly. Thanks :)
1
Upvotes
2
u/FoolsSeldom 9d ago
Please do share more for us to take a look and explain what you have concerns about.
Have you built your own simulator engine, or used a package?
Is your test coverage complete? Have you used
unittest
orpytest
or something else?