Skip to main content

History of Python

History of Python

Guido Van Rossum

Python was developed by Guido Van Rossum at National Research Institute for Mathematics and Computer Science in Netherlands during 1985-1990. Python is derived from many other languages, including ABC, Modula-3, C, C++, Algol-68, SmallTalk, Unix shell and other scripting languages. Rossum was inspired from " Monty Python's Flying Circus", a BBC comedy series and he wanted the name of his new language to be short, unique and mysterious. Hence he named it Python. It was a general-purpose interpreted, interactive, object-oriented, and high-level programming language. Python source code is available under the GNU General Public License(GPL) and it is now maintained by a core development team at the National Research Institute.

More about Python

python is a widely used general-purpose, high-level programming language. This is an Open Source software and its source code is available with a license in which the Copyright holder provides the rights to study, change, and distribute the software to anyone and for any purpose. This can run on any hardware platform (PC, Mac, Sun Sparc, etc.) or software platform (Linux, MacOS, Unix, Windows, etc.). Its design philosophy emphasizes code readability, and its syntax allows programmers toexpress concepts in least lines of code than in languages like C++ or Java. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming or procedural styles. It features a dynamic type system and automatic memory management and has a large and comprehensive standard library.

Python was conceived in the late 1980s and its implementation was started in December 1989 by Guido van Rossum at Centrum Wiskunde & Informatica which is a research center in Netherlands .The non-profit organization Python Software Foundation fosters development of the Python community and is responsible for various processes within the Python community, including developing the core Python distribution, managing intellectual rights, developer conferences including PyCon, and raising  funds. The softwares like YouTube, DropBox, Instagram, etc. are to name a few which is written in Python.

Python is used in many application domains. The Python Package Index lists thousands of third party modules for Python. Python's standard library and the community-contributed modules allow for endless possibilities. In Web and Internet development, Python offers many choices of Web development like Django and Pyramid for Frame work, Flask and Bottle for Micro frameworks and advanced content management systems such as Plone & Django CMS. In addition to this, Python's standard library supports many Internet Protocols such as HTML, XML, JSON, E-mail processing, FTP, IMAP etc. Python is in education presently from post secondary and Government is utilizing this for Administration, Homeland Security, Public Safety, Traffic Control, Urban Infrastructure etc. In Business Python is using in domains such as Consumer Goods Industry, Aviation, Medical, Industrial, Financial services, GIS & Mapping, Marine and Lighting. Python is used in areas of Customer Relationship Management (CRM), Content & Document Management, Energy Conservation, E-Commerce, Enterprise Resource Planning (ERP), Knowledge Management, Manufacturing, Product Development, Project Management, Quality Control, Six Sigma, Lean, Relational Online Analytical Processing (ROLAP), Risk Management, Simulation etc. In Network Programming, Python is used to control Firmware updates,bringing desktop applications to the Internet etc. In Software, Python plays a right role in Accessibility, Code Generation, Computer Graphics, Cross-platform Development, Data Mining, Documentation Development, E-mail, Embedded Systems, Functional Testing, Groupware, Legacy System Integration, Rapid Application Development, RSS aggregator, User Interface, Visual Effects etc.

Python is widely used in areas such as Biology, Geography, Language Processing, Astrology etc. Based on the application, many packages and libraries are developed in Python. SciPy is a collection of packages for Mathematics, Science, and Engineering. Pandas is a data analysis and modeling library. Python is a powerful interactive shell that features easy editing and recording of a work session, and supports visualizations and parallel computing.

Comments

  1. I am grateful to this blog site providing special as well as useful understanding concerning this subject.
    front end web development

    ReplyDelete
  2. Fantastic post! I'm actually getting ready to find out this information, therefore I'm thrilled to get this order. In addition, this blog is fantastic and contains a wealth of useful information. Good work! It's excellent information.

    Mobile App Development Company

    ReplyDelete
  3. Very Interesting Post! I regularly follow this kind of Blog.
    Custom ERP Software .

    ReplyDelete

Post a Comment

Popular posts from this blog

8051 Simple Programs

Sum of 8-bit Numbers Stored in Memory Here  we will discuss about 8051 programs but we can't discuss about all of the 8051 instructions. For programming 8051 we should know about assembler directives as well as instruction set. Click  here to download Atmel c51 user guide that will discuss about 8051(c51 family microcontroller) instruction set, assembler directives, c51 cross assembler from Atmel.  Program ORG 00H MOV R0,#50H   ; get memory location in memory pointer R0 MOV R1,#51H   ; get memory location on memory pointer register R1 MOV A,@R0       ; get content of memory location 50H to accumulator ADD A,@R1        ; add content of A with content of memory location 51H and store result in A MOV R0,#52H    ; get 52H to memory pointer R0 MOV@R0,A         ; copy content of A to memory location 52H END Add 16-bit Numbers Program ORG 00H MOV DPTR,#2040H   ; get 2040H into DPTR MOV A,#2BH              ; get lower byte of second 16-bit number on accumulator MO

Introduction to 8051 embedded C

For 8051 we need to include the file reg51.h. This file contains the all the definitions of 8051 registers. With this information C compiler produces hex file that can be downloaded into the ROM of the microcontroller. It is important to note that the size of the hex file produced by the assembly language is much larger than the hex file produced by C compiler. Apart from this fact, there is many reasons for writing programs in C instead of assembly: ●It is much easier and less time consuming to write programs in C assembly. ●C is more flexible; it is easier to modify and update. ●Programming in C allows to use code available in function libraries. ●Program written inC for one microcontroller is portable to other microcontrollers with little or no modifications. Data Types in 8051 Embedded C The table shown below lists the data types that are available in typical C51 compiler. The gives information about the size of the data variable and it's value range. Data type

8051 Keyboard Interfacing

Keyboards are organized in a matrix of rows and columns. The CPU accesses both rows and columns through ports. Therefore, with two 8-bit ports, an 8 x 8 matrix of keys can be connected to a microprocessor. When a key is pressed, a row and a column make a contact. Otherwise, there is no connection between rows and columns. In IBM PC keyboards, a single microcontroller takes care of hardware and software interfacing. A 4x4 matrix connected to two ports. The rows are connected to an output port and the columns are connected to an input port. Grounding Rows and reading Columns:- 8051 keyboard interfacing It is the function of the microcontroller to scan the keyboard continuously to detect and identify the key pressed. To detect a pressed key, the microcontroller grounds all rows by providing 0 to the output latch, then it reads the columns. If the data read from columns is D3 – D0 =1111, no key has been pressed and the process continues till key press is detected. If one of t