File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -264,13 +264,13 @@ def buysell(self, p):
264
264
def seeStats (self ):
265
265
template .lotsOfSpace ()
266
266
template .divider ()
267
- print ("Total Fish Caught: " + self .totalFishCaught )
268
- print ("| Total Money Made: " + self .totalMoneyMade )
269
- print ("| Hours Spent Fishing: " + self .hoursSpentFishing )
267
+ print ("Total Fish Caught: %d" % self .totalFishCaught )
268
+ print ("| Total Money Made: %d" % self .totalMoneyMade )
269
+ print ("| Hours Spent Fishing: %d" % self .hoursSpentFishing )
270
270
template .divider ()
271
- print ("Money Made From Interest: " + self .moneyMadeFromInterest )
272
- print ("| Times Gotten Drunk: " % self .timesGottenDrunk )
273
- print ("| Money Lost Gambling: " % self .moneyLostFromGambling )
271
+ print ("Money Made From Interest: %d" % self .moneyMadeFromInterest )
272
+ print ("| Times Gotten Drunk: %d " % self .timesGottenDrunk )
273
+ print ("| Money Lost Gambling: %d " % self .moneyLostFromGambling )
274
274
template .divider ()
275
275
input (" [ CONTINUE ]" )
276
276
You can’t perform that action at this time.
0 commit comments