Analysis of information sources in references of the Wikipedia article "Python (programozási nyelv)" in Hungarian language version.
Last modified:
{{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó)I'd spent a summer at DEC's Systems Research Center, which introduced me to Modula-2+; the Modula-3 final report was being written there at about the same time. What I learned there later showed up in Python's exception handling, modules, and the fact that methods explicitly contain 'self' in their parameter list. String slicing came from Algol-68 and Icon.
{{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite journal}}: CS1 karbantartás: elavult archiválási szolgáltatás (link){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó)replace "CLU" with "Python", "record" with "instance", and "procedure" with "function or method", and you get a pretty accurate description of Python's object model.
{{cite web}}: Cite has empty unknown parameter: |abruf= (súgó){{cite web}}: Cite has empty unknown parameters: |abruf= és |datum= (súgó){{cite web}}: Cite has empty unknown parameter: |abruf= (súgó){{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó)Nim's syntax is strongly reminiscent of Python's, as it uses indented code blocks and some of the same syntax (such as the way if/elif/then/else blocks are constructed).
We want something as usable for general programming as Python [...]
The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
I started work on the Swift Programming Language in July of 2010. I implemented much of the basic language structure, with only a few people knowing of its existence. A few other (amazing) people started contributing in earnest late in 2011, and it became a major focus for the Apple Developer Tools group in July 2013 [...] drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
{{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (súgó){{cite web}}: Cite has empty unknown parameters: |datum= és |abruf= (súgó){{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó)even though the design of C is far from ideal, its influence on Python is considerable.
{{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó){{cite web}}: Cite has empty unknown parameter: |abruf= (súgó){{cite web}}: Cite has empty unknown parameter: |abruf= (súgó){{cite web}}: Cite has empty unknown parameter: |abruf= (súgó)The C3 method itself has nothing to do with Python, since it was invented by people working on Dylan and it is described in a paper intended for lispers
{{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite web}}: CS1 karbantartás: több név: szerzőfelsorolás (link){{cite web}}: Cite has empty unknown parameters: |abruf= és |langugage= (súgó)I had extensive experience with implementing an interpreted language in the ABC group at CWI, and from working with this group I had learned a lot about language design. This is the origin of many Python features, including the use of indentation for statement grouping and the inclusion of very high-level data types (although the details are all different in Python).
This module implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML.
It is a mixture of the class mechanisms found in C++ and Modula-3
List comprehensions and generator expressions [...] are a concise notation for such operations, borrowed from the functional programming language Haskell.
By popular demand, a few features commonly found in functional programming languages like Lisp have been added to Python. With the lambda keyword, small anonymous functions can be created.
This module provides regular expression matching operations similar to those found in Perl.
Since Python makes heavy use ofmalloc()andfree(), it needs a strategy to avoid memory leaks as well as the use of freed memory. The chosen method is called reference counting.
{{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó)stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni']
Almost all machines today (November 2000) use IEEE-754 floating point arithmetic, and almost all platforms map Python floats to IEEE-754 "double precision".
{{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite web}}: Unknown parameter |abruf= ignored (|access-date= suggested) (súgó){{cite web}}: Cite has empty unknown parameters: |in=, |datum= és |abruf= (súgó){{cite web}}: CS1 karbantartás: title értéke archived copy (link){{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó){{cite web}}: Cite uses generic title (súgó)Python has won the TIOBE programming language of the year award! This is for the fourth time in the history, which is a record! The title is awarded to the programming language that has gained most popularity in one year.
I had extensive experience with implementing an interpreted language in the ABC group at CWI, and from working with this group I had learned a lot about language design. This is the origin of many Python features, including the use of indentation for statement grouping and the inclusion of very high-level data types (although the details are all different in Python).
I'd spent a summer at DEC's Systems Research Center, which introduced me to Modula-2+; the Modula-3 final report was being written there at about the same time. What I learned there later showed up in Python's exception handling, modules, and the fact that methods explicitly contain 'self' in their parameter list. String slicing came from Algol-68 and Icon.
This module implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML.
It is a mixture of the class mechanisms found in C++ and Modula-3
replace "CLU" with "Python", "record" with "instance", and "procedure" with "function or method", and you get a pretty accurate description of Python's object model.
The C3 method itself has nothing to do with Python, since it was invented by people working on Dylan and it is described in a paper intended for lispers
List comprehensions and generator expressions [...] are a concise notation for such operations, borrowed from the functional programming language Haskell.
By popular demand, a few features commonly found in functional programming languages like Lisp have been added to Python. With the lambda keyword, small anonymous functions can be created.
We want something as usable for general programming as Python [...]
The Swift language is the product of tireless effort from a team of language experts, documentation gurus, compiler optimization ninjas, and an incredibly important internal dogfooding group who provided feedback to help refine and battle-test ideas. Of course, it also greatly benefited from the experiences hard-won by many other languages in the field, drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
Python has won the TIOBE programming language of the year award! This is for the fourth time in the history, which is a record! The title is awarded to the programming language that has gained most popularity in one year.
Since Python makes heavy use ofmalloc()andfree(), it needs a strategy to avoid memory leaks as well as the use of freed memory. The chosen method is called reference counting.
{{cite book}}: Unknown parameter |coauthors= ignored (|author= suggested) (súgó)stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni']
Almost all machines today (November 2000) use IEEE-754 floating point arithmetic, and almost all platforms map Python floats to IEEE-754 "double precision".
{{cite web}}: CS1 karbantartás: title értéke archived copy (link){{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó){{cite web}}: Cite uses generic title (súgó)Nim's syntax is strongly reminiscent of Python's, as it uses indented code blocks and some of the same syntax (such as the way if/elif/then/else blocks are constructed).
I started work on the Swift Programming Language in July of 2010. I implemented much of the basic language structure, with only a few people knowing of its existence. A few other (amazing) people started contributing in earnest late in 2011, and it became a major focus for the Apple Developer Tools group in July 2013 [...] drawing ideas from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list.
{{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite web}}: Unknown parameter |offline= ignored (|url-status= suggested) (súgó){{cite journal}}: More than one of |accessdate= és |access-date= specified (súgó); More than one of |archivedate= és |archive-date= specified (súgó); More than one of |archiveurl= és |archive-url= specified (súgó)