Beginner Python Coding Book 1

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 8

Beginner Python Coding Book 1

*~2022~*

(Written and illustrated by Sarveshrau)


CONTENT:
(Pg. 1)

1. Installation of python I.D.E. : Page 2


2. Introduction of Python I.D.E. : Page 5
3. Starting of the Python IDE application : Page 6
4. Inputs and Outputs : page 9

(If can’t instal python, you could also use)


= “https://www.programiz.com/python-programming/online-compiler/
(Pg. 2)

Chapter 1: Installation of python I.D.E.

1) Go to www.google.com
2) Type in python.org
3) Click on the first option in the google page

4) Click on downloads

5) Scroll down to the release section


(Pg. 3)
6) Then click “Download” on the latest version of python

I.D.E.

7) Go to your downloads folder and click on python-


“based on”
(Pg. 4)
8) Click “Install Now”

9) Now the downloading process starts…

10) Finally, add your python IDE file to your desktop to


start
coding.
(Pg. 5)

Chapter 2: Introduction of Python I.D.E.

1) What is Python? 

Python is an interpreted, object-oriented, high-level programming


language with dynamic semantics. Its high-level built-in data
structures, combined with dynamic typing and dynamic binding,
make it very attractive for Rapid Application Development, as well
as for use as a scripting or glue language to connect existing
components together. Python's simple, easy to learn syntax
emphasizes readability and therefore reduces the cost of program
maintenance. The Python interpreter and the extensive standard
library are available in source or binary form without charge for all
major platforms, and can be freely distributed to debug a program is
to add a few print statements to the source: the fast edit-test-debug
cycle makes this simple approach very effective.

(From python.org)

2) Python (programming language)

Python is a high-level, general-purpose programming language.


Python is dynamically-typed and garbage-collected. It supports
multiple programming
paradigms,including structured (particularly procedural), object
oriented and functional programming. It is often described as a
"batteries included" language due to its comprehensive standard
library. Guido van Rossum began working on Python in the late
1980s as a successor to the ABC programming language and first
released it in 1991 as Python 0.9.0.
(From Wikipedia)
(Pg. 9)

Chapter 4: Inputs and Outputs


1) Python provides numerous built-in functions that are readily
available to us at the Python prompt.

2) Some of the functions like input() and print() are widely used for
standard input and output operations respectively.

3) But there is also the “print()” tag which is used to show and print the
product or the results of the process or the program.

4) Input means a place where, or a device through which, energy or


information enters a system… Or it could also be defined as any
information or data sent to a computer for processing is considered

input.

5) While Output means a place where power or information leaves a


system… Or it could also be defined as the act of producing
something, the amount of something that is produced or the process in
which something is delivered.

You might also like