🗊Презентация Python programming language

Нажмите для полного просмотра!
Python programming language, слайд №1Python programming language, слайд №2Python programming language, слайд №3Python programming language, слайд №4Python programming language, слайд №5Python programming language, слайд №6Python programming language, слайд №7Python programming language, слайд №8Python programming language, слайд №9

Вы можете ознакомиться и скачать презентацию на тему Python programming language. Доклад-сообщение содержит 9 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1





Python
programming language
Описание слайда:
Python programming language

Слайд 2






	Python is a widely used high-level, general-purpose, interpreted, dynamic programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C++ or Java. The language provides constructs intended to enable clear programs on both a small and large scale.
Описание слайда:
Python is a widely used high-level, general-purpose, interpreted, dynamic programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C++ or Java. The language provides constructs intended to enable clear programs on both a small and large scale.

Слайд 3






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 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.

Слайд 4






Python was conceived in the late 1980s, and its implementation was started in December 1989  by Guido van Rossum at CWI in the Netherlands as a successor to the ABC language (itself inspired by SETL)capable of exception handling and interfacing with the Amoeba operating system. Van Rossum is Python's principal author.
Описание слайда:
Python was conceived in the late 1980s, and its implementation was started in December 1989  by Guido van Rossum at CWI in the Netherlands as a successor to the ABC language (itself inspired by SETL)capable of exception handling and interfacing with the Amoeba operating system. Van Rossum is Python's principal author.

Слайд 5






The core philosophy of the language is summarized by the document "PEP 20 (The Zen of Python)", which includes aphorisms such as:
Beautiful is better than ugly
Explicit is better than implicit
Simple is better than complex
Complex is better than complicated
Readability counts
Описание слайда:
The core philosophy of the language is summarized by the document "PEP 20 (The Zen of Python)", which includes aphorisms such as: Beautiful is better than ugly Explicit is better than implicit Simple is better than complex Complex is better than complicated Readability counts

Слайд 6






The if statement, which conditionally executes a block of code, along with else and elif (a contraction of else-if).
The for statement, which iterates over an iterable object, capturing each element to a local variable for use by the attached block.
The while statement, which executes a block of code as long as its condition is true.
Описание слайда:
The if statement, which conditionally executes a block of code, along with else and elif (a contraction of else-if). The for statement, which iterates over an iterable object, capturing each element to a local variable for use by the attached block. The while statement, which executes a block of code as long as its condition is true.

Слайд 7






Methods
Methods on objects are functions attached to the object's class; the syntax instance.method(argument) is, for normal methods and functions, syntactic sugar for Class.method(instance, argument). Python methods have an explicit self parameter to access instance data, in contrast to the implicit self (or this) in some other object-oriented programming languages (e.g. C++, Java, Objective-C, or Ruby).
Описание слайда:
Methods Methods on objects are functions attached to the object's class; the syntax instance.method(argument) is, for normal methods and functions, syntactic sugar for Class.method(instance, argument). Python methods have an explicit self parameter to access instance data, in contrast to the implicit self (or this) in some other object-oriented programming languages (e.g. C++, Java, Objective-C, or Ruby).

Слайд 8


Python programming language, слайд №8
Описание слайда:

Слайд 9






Since 2003, Python has consistently ranked in the top ten most popular programming languages as measured by the TIOBE Programming Community Index.
Описание слайда:
Since 2003, Python has consistently ranked in the top ten most popular programming languages as measured by the TIOBE Programming Community Index.



Похожие презентации
Mypresentation.ru
Загрузить презентацию