Python Basic
Python Basic
we will run a simple program to print Hello World on the console.Python provides us the two
ways to run a program:
Using the script mode, we can write multiple lines code into a file which can be executed
later. For this purpose, we need to open an editor like notepad, create a file named and save
it with .py extension, which stands for "Python". Now, we will implement the above example
using the script mode.
Apart from that, we can also run the file using the operating system terminal. But, we should
be aware of the path of the directory where we have saved our file.
Single-Line Comments
Single-line remarks in Python have shown to be effective for providing quick descriptions for
parameters, function definitions, and expressions. A single-line comment of Python is the
one that has a hashtag # at the beginning of it and continues until the finish of the line. If the
comment continues to the next line, add a hashtag to the subsequent line and resume the
conversation. Consider the accompanying code snippet, which shows how to use a single
line comment:
Code
Multi-Line Comments
Python does not provide the facility for multi-line comments. However, there are indeed
many ways to create multi-line comments.
Code
# it is a
# comment
# extending to multiple lines
In this case, each line is considered a comment, and they are all omitted
Using String Literals
Because Python overlooks string expressions that aren't allocated to a variable, we can
utilize them as comments.
Code
'it is a comment extending to multiple lines'
We can observe that on running this code, there will be no output; thus, we utilize the strings
inside triple quotes(""") as multi-line comments.
Python Docstring
The strings enclosed in triple quotes that come immediately after the defined function are
called Python docstring. It's designed to link documentation developed for Python modules,
methods, classes, and functions together. It's placed just beneath the function, module, or
class to explain what they perform. The docstring is then readily accessible in Python using
the __doc__ attribute.