1 / 7

Introduction to Python

this presentation will walk you through basic introduction to python, major features of python, how python runs on our system and some important commands used in python.

23892
Download Presentation

Introduction to Python

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Python Swipe

  2. Introduction Python is a dynamically semantic, interpreted, object- oriented high-level programming language. Python's readability, which lowers software maintenance costs. Modules and packages are supported by Python, which facilitates software modularity and code reuse. plain, easy-to-learn syntax emphasises

  3. Features of Python Simple & easy to learn Most expressive language Freeware and open source Compiled as well as Interpreted Sample Program in Python to add two numbers:- a = 10 b = 20 c = a+b print(c)

  4. Features of Python Portable and Platform Independent Dynamically typed programming language Extensible and Embedded both Huge library support required for full usability

  5. How a Python Program Runs on our System

  6. Few important commands python File_Name.py —> To run the file python -m py_compile File_Name.py —> To compile the file python -m dis File_Name.py —> To see the byte code python File_Name.cpython-38.pyc —> To run the compiled code

  7. Topics for next Post Memory Management in Python Components of python program Stay Tuned with

More Related