From dceb6a70bed97c6800fd6ddd325008300232ae83 Mon Sep 17 00:00:00 2001 From: Aidr0ne Date: Fri, 3 Jan 2025 09:02:07 +0000 Subject: [PATCH] tidy-Up-script-1 --- Lesson 1 - Introduction to Python/intro.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Lesson 1 - Introduction to Python/intro.py b/Lesson 1 - Introduction to Python/intro.py index ec30b22..25e4e66 100644 --- a/Lesson 1 - Introduction to Python/intro.py +++ b/Lesson 1 - Introduction to Python/intro.py @@ -22,15 +22,13 @@ ''' OUTPUT Hello!! -''' -''' + NOTE In a Python script to print something on the console print() function is used – it simply prints out a line ( and also includes a newline unlike in C ). One difference between Python 2 and Python 3 is the print statement. In Python 2, the “print” atement is not a function, and therefore can be invoked without a parenthesis. However, in Python 3, it is a function, and must invoked with parentheses. -''' -''' + A suggestion would be to visit the documentation page of Python and study the keywords, functions, classes before actually going ahead with python programming. '''