Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Lesson 1 - Introduction to Python/intro.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
'''
Expand Down