From 4f14c811233284961b659e29a4fb4406eef56c3f Mon Sep 17 00:00:00 2001 From: mbhatti4 Date: Tue, 11 Nov 2025 15:10:17 -0500 Subject: [PATCH] I found this unit very useful but more difficult to understand, especially this specefic lab. I understand the concepts of class, methods and instances, but the code themselves are hard to understnad. If i wrote the codes like unit 1 or 2, they would include more fucntions and loops. That is what I am confortbale with. OOP seems to super efficient and writing the codes as they are can be more organized, I do think I am at the level to write them as the Yahtzee game. --- yahtzee.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yahtzee.py b/yahtzee.py index 585ccf3..590c8ab 100644 --- a/yahtzee.py +++ b/yahtzee.py @@ -121,3 +121,6 @@ class Yahtzee: if die.face in choice_ints: choice_ints.remove(die.face) return len(choice_ints) == 0 + + +"' I do not know the rules of this game to add more lol" \ No newline at end of file