WK1 Python Getting Started
WK1 Python Getting Started
STARTED AND
PROGRAMMING BASICS
Python Overview
Interpreted: Python source code is compiled to byte code as a .pyc file, and this
byte code can be interpreted by the interpreter.
Interactive
Object Oriented Programming Language
Easy & Simple
Portable
Scalable: Provides improved structure for supporting large programs.
Integrated
Expressive Language
Python Interpreter: There are two modes to use the python interpreter:
Names of some Python interpreters are:
1. Interactive Mode
PyCharm
Without passing python script file to the interpreter,
Python IDLE
directly execute code to Python (Command line).
The Python Bundle
2. Script Mode
pyGUI
Sublime Text etc. In this mode source code is stored in a file with
the .py extension and use the interpreter to execute
the contents of the file. To execute the script by the
interpreter, you have to tell the interpreter the name
of the file.
PYTHON FEATURES: CONTINUATION
PYTHON FEATURES: CONTINUATION
RESERVED WORDS: CONTINUATION
MORE DATA TYPE CONVERSION
FUNCTIONS
MORE DATA TYPE CONVERSION
FUNCTIONS
END OF SLIDE