You are on page 1of 7

KELOMPOK 4 :

MOHANDES SANTIKO20104410005
EL RISKO NOVAL 20104410002
What is Python?
Why Should You Learn Python ?

The programming language offered by Python is basically very simple. While Java
and C++ require difficult lines of code and cannot be done easily by beginners,
Python is very simple because it uses grammar like talking to a computer .

• Python is the most appropriate because it can be done quickly and effectively.

• Python is also easy to learn so that when learning Python, everything can be
absorbed quickly.

• In addition, Python is also used in many large companies. So for those who
want to make money from coding

3
Phython

Python is a multipurpose interpretive programming language that uses a design


philosophy with a focus on code readability. As a programming language, Python
combines the capabilities, capabilities and syntax of high-quality code and library
functions.

Basically, the programming language designed by Guido van Rossum is actually very
widely used to create programs that are very often used by the general public. Call it GUI
(desktop) programs, smartphone applications, CLI programs, IoT, games, web, hacking
programs and any more.

4
Python Features

Python has a lot of features that make it interesting to use. Here are the features of Python that are
the advantages of it:

• Object oriented. Easy to expand by creating new modules.


• The module can also be built in Python.
• Has a grammar that is easy to learn. Supported by an automatic memory management system
that requires performance when coding.
• Python also has many supporting facilities so that when operating it, it is easy and fast.

5
Python Functions
• Function blocks begin with the keyword def
followed by the function name and
parentheses (()).
• Each input parameter or argument must be
enclosed in these brackets. You can also
specify parameters inside these brackets.
• The first statement of a function can be an
optional statement - a function
documentation string or a docstring.
• The code block in each function starts with
a colon (:) and is indented.
• The return statement [expression] exits a
function, optionally passing the expression
back to the caller. A return statement without
arguments is the same as return None.
Any question?

You might also like