From 327e03c9d55c725aa923642c1b6d7bd9278ebfb1 Mon Sep 17 00:00:00 2001 From: Ernestovich Date: Mon, 28 May 2018 13:45:04 +0300 Subject: [PATCH] Update COUNTING BOBS.py --- COUNTING BOBS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COUNTING BOBS.py b/COUNTING BOBS.py index b7e1400..022f82e 100644 --- a/COUNTING BOBS.py +++ b/COUNTING BOBS.py @@ -8,4 +8,4 @@ for i in range(len(s)): if s[i:].startswith('bob'): countBob += 1 -print("Number of times bob occurs is: ") + str(countBob) +print("Number of times bob occurs is: " + str(countBob))