Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 9

Python script

1.12.21 - why python popular?


• Python is easy to learn because of its simple
Syntaxes.
• Many modules (pre-defined and third party)
• Code length is very short because of third
party modules.
• Platform Independent.
• Supports both functional and oops concept.
python
• Is powerful multi-purpose programming
language created by Guido and Rossum.
• Python versions
• 2.x
• 3.x
• Python install
• Python --version
• Pip –version(require 3rd party modules install)
Python Install Linux

• Sudo yum install wget


• Wget
https://www.python.org/ftp/python/3.7.0/Pyt
hon-3.7.0.tgz
• tar –xvzf Python-3.7.0.tgz
• Yum install gcc openssl-devel bzip2-devel libffi-
devel
• ./configure,Make,make altinstall
Indentation
• Indent  space
• Indentations are used to represent block of
code.
• The amount of indentation is up to you, but it
Consistent throughout the block.
• Don’t include the indent unnecessarily.
Python comments
• Single line - #
• Multi line – ‘’’ or “”” from start, at end.
"""
Author: pradeep
date: Dec01,2021
version:1.0.0
""“
# adding program
Escap/special charcter
• \n – New line
• \b – backspace
• \t – tab
• \ - escape symbol
• Windows path – C:\\pradeep\\

You might also like