From dbf4fe1a40fa74fe89a2a55d012c5b3827965263 Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 19 Sep 2016 06:11:43 +0000 Subject: [PATCH] Remove debugging print --- markov.py | 1 - 1 file changed, 1 deletion(-) diff --git a/markov.py b/markov.py index f2b77aa..3cc098d 100644 --- a/markov.py +++ b/markov.py @@ -30,7 +30,6 @@ class Markov: before = random.choice(list(self.matrix)) selection = self.matrix[before] - print(repr(before), repr(selection)) choice = random.randrange(sum(selection.values())) counter = 0