Skip to content

Notes with Coding it will help us to understand easier way!!

Notifications You must be signed in to change notification settings

Balaji-S-2024/Python_Notes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python_Notes

Notes with Coding it will help us to understand easier way!!

-by KavinVijay

Python

  • Python is an interpreted, object-oriented, high-level programming language that can be used for a wide variety of applications.
  • Python is a powerful general-purpose programming language.
  • First developed in the late 1980s by Guido van Rossum.
  • Python is open source programming language.
  • Guido van Rossum named it after the BBC Comedy TV series Monty Python’s Flying Circus

Advantages of Python Programming

  • Python is easy to learn and use.
  • Large number of libraries available that can be used in your projects today.
  • High Level Programming Language.
  • Huge Community
  • Object-oriented language
  • Portable across Operating systems

Organizations using Python

  • Google
  • microsoft
  • facebook
  • mozilla
  • cisco
  • Quora
  • YouTube etc...

Python Based Jobs

  • Data Analysis
  • Artificial Intelligence
  • Automation
  • Web Application
  • Desktop Application
  • Hacking
  • School Students

High-level Languages

High-level languages, like C, C++, JAVA,Python etc., are very near to English. It makes programming process easy. However, it must be translated into machine language before execution. This translation process is either conducted by either a compiler or an interpreter. Also known as source code.

Machine Code

Machine languages are very close to the hardware. Every computer has its machine language. A machine language programs are made up of series of binary pattern. (Eg. 110110) It represents the simple operations which should be performed by the computer. Machine language programs are executable so that they can be run directly.

Compiler

A Compiler transforms code written in a high-level programming language into a machine code or any other Intermediate code.It converts the text that a programmer writes into a format the CPU can understand.The conversion manner is diffrent.It convers the Entire source code in one go and reports all the errors of the program along with the line numbers.After all the error are removed,the program is recompiled and after that the Compiler is no needed in memory as the object program is available.

Interpreter

The interpreter converts the source code line-by-line during Run Time,translates it into machine code or virtual machine code. Interpreter allows evaluation and modification of the program while it is executing.if there is error in any line,it reports it at the same time and program executio cannot resume untill the errror is rectified.Interprerer must always be present in the memory every time the program is run.it is first interpreted and then executed

About

Notes with Coding it will help us to understand easier way!!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%