From e21fac9d7d0aaaa20d9ca731d8b767d448fbf908 Mon Sep 17 00:00:00 2001 From: delhombre Date: Mon, 1 Jul 2024 13:54:11 +0200 Subject: [PATCH] * chore(sample.py): change print statement from Python 2 syntax to Python 3 syntax --- Lesson3/sample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lesson3/sample.py b/Lesson3/sample.py index 3d3919e..627a50d 100644 --- a/Lesson3/sample.py +++ b/Lesson3/sample.py @@ -6,7 +6,7 @@ def printMessage(self): """ a simple function that prints a message """ - print "Hello World!" + print("Hello World!") if __name__ == "__main__":