Skip to content

Commit 57ff30b

Browse files
Fixed some concatenation errors.
1 parent 7353d28 commit 57ff30b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,13 +264,13 @@ def buysell(self, p):
264264
def seeStats(self):
265265
template.lotsOfSpace()
266266
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)
270270
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)
274274
template.divider()
275275
input(" [ CONTINUE ]")
276276

0 commit comments

Comments
 (0)