Talk:Python (programming language)/Archive 9: Difference between revisions

Content deleted Content added
Archiving 2 discussion(s) from Talk:Python (programming language)) (bot
 
m Archiving 2 discussion(s) from Talk:Python (programming language)) (bot
 
(8 intermediate revisions by the same user not shown)
Line 33:
: '''Oppose''' consensus apparent. Removing merge tag.
{{Discussion bottom}}
 
==COI==
 
I just linked to blogory.org after reading the policy guidelines.
 
Understandably Wikipedia is very sensitive about links, and so I want to
be most respectful of the site. In case there is any concern about my posting,
here is the background.
 
I run blogory.org. As of today, Jan 19, 2016 it has 169 links about Python, and 63 links about zodb.
 
Blogory.org is a site very similar to DMOZ or Yahoo Directory.
 
In contrast DMOZ, has 328 links about Python, and 1 link about zodb.
 
Really DMOZ is so out of date.
 
So I linked to the appropriate pages of my website from Wikipedia->Python
blogory.org/python
 
and from Wikipedia->zodb
blogory.org/zodb
 
I presume that is okay under the external links policy:
"A well-chosen link to a directory of websites or organizations. Long lists of links are not acceptable. A directory link may be a permanent link or a temporary measure put in place while external links are being discussed on the article's talk page."
 
Please let me know if there is anything I should do to make this link more appealing to the Wikipedia community.
[[User:Clozinski|Clozinski]] ([[User talk:Clozinski|talk]]) 14:07, 19 January 2016 (UTC)
 
:Please see [[User talk:Clozinski#January 2016]]. --[[User:Guy Macon|Guy Macon]] ([[User talk:Guy Macon|talk]]) 14:15, 19 January 2016 (UTC)
 
== List of statements: style of paragraph on "=" statement does not fit with other statements ==
 
Currently the paragraph on the "=" statement is very long and does not really go well with the explanations on other statements. For example the 'if' statement is described like this:
 
* The [[if-then-else|<code>if</code> statement]], which conditionally executes a block of code, along with <code>else</code> and <code>elif</code> (a contraction of else-if).
 
This is easy to understand for even for beginners. On the other hand the "=" statement is described like this:
 
* The assignment statement (token '=', the equals sign). This operates differently than in traditional [[Imperative_programming|imperative programming languages]], and this fundamental mechanism (including the nature of Python's version of "variables") illuminates many other features of the language. Assignment in [[C (programming language)|C]], e.g., "x = 2", translates to "typed variable name x receives a copy of numeric value 2". The (right-hand) value is copied into an [[Memory_management#ALLOCATION|allocated storage ___location]] for which the (left-hand) [[Variable_(computer_science)|variable name]] is the symbolic address. The memory allocated to the variable is large enough (potentially quite large) for the declared [[Type_system|type]]. In the simplest case of Python assignment, using the same example, "x = 2", translates to "(generic) name x receives a [[Pointer_(computer_programming)|reference]] to a separate, dynamically allocated [[Object_(computer_science)|object]] of numeric (int) type of value 2." This is referred to as "binding" the name to the object. Since the name's storage ___location doesn't "contain" the indicated value, it is not proper to refer to it as a "variable." Names may be subsequently re-bound at any time to objects of wildly varying types, including strings, procedures, complex objects with data and methods, etc. Successive assignments of a common value to multiple names, e.g., "x = 2"; "y = 2"; "z = 2" result in allocating storage to (at most) three names and a single numeric object, to which all three names are bound. Since a name is a generic reference holder it is not reasonable to associate a fixed [[Type_system|data type]] with it. However at a given time a name will be bound to '''some''' object, which '''will''' have a type; thus there is [[Dynamic_type|dynamic typing]].
 
I think this is too complicated and doesn't fit with the rest of this list. My suggestion would be:
 
* The assignment statement <code>=</code>, which assigns a value to a variable.
 
We could move the longer version to [[Python syntax and semantics]].
 
What do you think? --[[User:Marko Knoebl|Marko Knoebl]] ([[User talk:Marko Knoebl|talk]]) 23:09, 1 February 2016 (UTC)
 
: There is no point in a para that says "The assignment statement <code>=</code>, which assigns a value to a variable.", no more than there is in the statement "The [[if-then-else|<code>if</code> statement]], which conditionally executes a block of code, along with <code>else</code> and <code>elif</code> (a contraction of else-if)." Both of these are trivially obvious to anyone with the rudimentary level of knowledge we would assume for a reader interested in an article on a specific programming language. Both fail WP:MANUAL (by not even reaching that level!). Is there a single reader who reads past the lead (which introduces Python as an unsurprising block-structured procedural language) and will then learn ''anything'' new from such a bland statement? If we are to have descriptions no more detail than that, then we might as well state nothing about the assignment operator or the if statement at all and just save the length.
: Python's assignment operator is a little more than this though. This article goes into it in some depth. This is useful depth and generally to be commended. We need more like that, not less.
: We could move it, as there is an article at [[Python syntax and semantics]]. Given the two levels of articles this is viable. It's not there as yet and it is needed there. This description is quite important for understanding Python behaviour.
: So I'd be OK with moving it, but I'd prefer to keep it and maybe re-cast it as an explanation of a broader typing and instancing concept than just "explaining what assignment operators are". It shouldn't be lost though. I don't like the idea either of replacing it with the bland statement. Of the two, I'd rather delete the vacuous and pointless explanation of the if statement. We're not a manual, we don't have to list every feature. Our job is to explain Python and its characteristic features, not exhaustively document it for a beginner's lesson. Our readers already understand the basics of assignment and conditional branches. [[User:Viam Ferream|Viam Ferream]] ([[User talk:Viam Ferream|talk]]) 13:03, 2 February 2016 (UTC)
 
:: Thanks for your constructive comments. What bothers me about the section is that it somehow diminishes the article's readability as more and more (unrelated) stuff is put in the section "Statements and control flow". If you look at [https://en.wikipedia.org/w/index.php?title=Python_%28programming_language%29&oldid=100203385#Control_structures_and_statements that section from 2007] you'll see that it just included five statements. (In my eyes these five statements are amongst the "central" ones in Python and give a quite good overview of the language). In the past this section has been expanded to include many other (less significant) statements and has also absorbed other topics like ''coroutines'' or (in the edit at hand) an explanation of ''dynamic typing'' and ''[[reference type]]s''.
:: I'm wondering if we should restructure the section entirely and get rid of the list of statements (presenting its current content in a more meaningful way) --[[User:Marko Knoebl|Marko Knoebl]] ([[User talk:Marko Knoebl|talk]]) 22:40, 4 February 2016 (UTC)
 
:::I made bold change, but will now revert it myself after seeing that this has been under active discussion. I think my change was OK, but I should have come here first. [[User:Snori|Snori]] ([[User talk:Snori|talk]]) 06:00, 20 September 2016 (UTC)
 
== "Compile time" ==
 
Under Typing, we currently have, "Type constraints are not checked at compile time...", although Python is introduced as an interpreted language. This is a paradox (as the linked articles for "compile time" and "interpreted language" support).
 
What is the intended meaning here? There seem to be two possibilities:
 
1. "Type constraints are not checked once, statically, but only when and if they are executed" (could even be independently checked ''every'' time they are executed).
 
2. "On those occasions when Python code is to be compiled instead of interpreted (as with PyPy, Cython, or other), type constraints are not checked at compile time."
 
[[User:Jmacwiki|Jmacwiki]] ([[User talk:Jmacwiki|talk]]) 05:36, 4 December 2016 (UTC)
 
== Needs "Criticism" ==
 
Some other Wikipedia pages about programming languages have a subheader titled "criticism". Python's page doesn't have that. List criticism below to add it to the future subheader.
[[User:Andrew Gunner|Andrew Gunner]] ([[User talk:Andrew Gunner|talk]]) 18:24, 23 February 2017 (UTC)
 
:Criticism should rather be represented in prose instead of a list. Nevertheless, make sure to cite sources. -- [[User:ChamithN|<span style="font-family:Segoe print; color:#CC4E5C; text-shadow:gray 0.2em 0.2em 0.4em;">ChamithN</span>]] [[User talk:ChamithN|<span style="color:#228B22">''(talk)''</span>]] 18:57, 23 February 2017 (UTC)
 
::But be careful of this: "sections dedicated to negative material may violate the NPOV policy and may be a troll magnet, which can be harmful if it leads to users with strong opinions dominating the article but may simplify maintenance of the article if unhelpful edits are limited to a single section". [https://en.wikipedia.org/wiki/Wikipedia:Criticism#.22Criticism.22_section] -- [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 21:10, 23 February 2017 (UTC)
 
== As of Python 3.6, there is literal string interpolation ==
 
https://docs.python.org/3/whatsnew/3.6.html--[[User:Mister Infamous|Mister Infamous]] ([[User talk:Mister Infamous|talk]]) 05:53, 7 March 2017 (UTC)
 
:Yes, and aren't they beautiful! I've updated the section that mentioned "no string interpolation". [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 00:05, 8 March 2017 (UTC)
::Thanks! All&nbsp;the&nbsp;best: ''[[User:Rich Farmbrough|Rich]]&nbsp;[[User talk:Rich Farmbrough|Farmbrough]]'',<small> 19:16, 15 April 2017 (UTC).</small><br />
 
== External links modified ==
 
Hello fellow Wikipedians,
 
I have just modified 5 external links on [[Python (programming language)]]. Please take a moment to review [[special:diff/813120178|my edit]]. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit [[User:Cyberpower678/FaQs#InternetArchiveBot|this simple FaQ]] for additional information. I made the following changes:
*Added archive https://web.archive.org/web/20070501105422/http://www.amk.ca/python/writing/gvr-interview to http://www.amk.ca/python/writing/gvr-interview
*Corrected formatting/usage for https://www.python.org/community/pycon/dc2004/papers/24/metaclasses-pycon.pdf
*Corrected formatting/usage for http://www.2kgames.com/civ4/blog_03.htm
*Corrected formatting/usage for https://code.google.com/apis/documents/docs/1.0/developers_guide_python.html
*Added archive https://web.archive.org/web/20081229095320/http://www.computerworld.com.au/index.php/id%3B66665771 to http://www.computerworld.com.au/index.php/id;66665771
 
When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.
 
{{sourcecheck|checked=false|needhelp=}}
 
Cheers.—[[User:InternetArchiveBot|'''<span style="color:darkgrey;font-family:monospace">InternetArchiveBot</span>''']] <span style="color:green;font-family:Rockwell">([[User talk:InternetArchiveBot|Report bug]])</span> 22:12, 1 December 2017 (UTC)
 
== Technical tag ==
 
I just read over the article, and came away mostly baffled. I am reasonably computer literate, and recognize some of the terms in the lead, but came away with only a slightly better understanding of Python than I had before I read it. Someone with more expertise needs to take a shot at making this more readable for the general public. Imagine your mom reading this, your mom who knows how to send and receive emails and can open up a Word document but who has never modified her computer registry or attempted to replace her internal hard drive— she knows there is a difference between a Mac and a PC, but isn't sure what it is. How would you explain Python to ''her'' in a way that would allow her to understand it? That is what this article needs to fix. The multiple links in the lead, etc., are good for obtaining this information, but Mom shouldn't have to click on a bunch of links to understand the basics of this article. Anyhow, someone please think about it. Thanks! [[User:KDS4444|KDS4444]] ([[User talk:KDS4444|talk]]) 23:30, 21 August 2017 (UTC)
 
:I disagree. I think this is a well-written article about the subject, and the first sentence provides plenty of context. The lead sentence "Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991." tells anyone what this article is about. Of course the rest of the article becomes more technical, but if you were not into programming one would read the first sentence and then move on. This article is less technical and uses less jargon than similar articles such as [[Java_(programming_language)]], [[C_(programming_language)]] and [[C++]]. [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 09:10, 22 August 2017 (UTC)
 
:I agree the article should be more readable for the general public, and this is also true for other programming language articles. When reading a wikipedia article about a car or a plant, I do not generally find a flow of bombastic jargon terms about the physics inside the engine or some very technical biology stuff. For example, is it really necessary to say "object-oriented, imperative, functional and procedural"? At least it seems non necessary to say it is procedural, this is not a very in-depth information, most useful languages used in engineering (not academia) are procedural; it does not mean so much to me.[[User:Danieldanielcolo|Danieldanielcolo]] ([[User talk:Danieldanielcolo|talk]]) 09:55, 25 February 2018 (UTC)
 
::Yes, it is necessary to say "object-oriented, imperative, functional and procedural". These are different programming paradigms, and not all procedural languages have these other styles. So it's quite relevant. [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 08:24, 27 February 2018 (UTC)
 
I disagree as well. I only started a little while ago,and I think I've gotten the hang of it. Here are some reasons I think it's good:
1.It has "batteries included". That means it comes with everything you need to get started.
2.It has good documentation.
There is a pretty big online community,
and the download comes with a help program.
There are also lots of books.
3.Good for beginners. Python is easy to learn,but very powerful.
I think you should try. [[User:CrazyMinecart88|CrazyMinecart88]] ([[User talk:CrazyMinecart88|talk]]) 19:09, 25 February 2018 (UTC)
 
== "fewer lines of code" in lead? ==
 
The lead says, "''and a syntax that allows programmers to express concepts in fewer lines of code''". Should that be removed? I have two problems. One, fewer than what (it says fewer than C or Java, but that's not saying much because they're small languages)? And two, it's not my experience anyway: compared to some languages (e.g. Perl, Matlab), I'd say Python is more verbose but also more readable. And it's not what I'd call a defining feature of python. [[User:Adpete|Adpete]] ([[User talk:Adpete|talk]]) 01:36, 14 March 2018 (UTC)
 
:OK, I'm removing it. [[User:Adpete|Adpete]] ([[User talk:Adpete|talk]]) 02:02, 21 March 2018 (UTC)
 
I disagree. It says (said) "express *concepts* in fewer lines of code. Trying to create a hash map of linked lists in C requires an enormous number of LOC (assuming one statement = one line). I ''would'' consider the syntax a defining characteristic of the language. The statement was well ref'd, so I'd like it back in. [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 03:27, 21 March 2018 (UTC)
 
:Well I think you'd struggle to find a language which is less verbose than C for creating a linked list. But for the sentence to belong in the lead (let alone the first paragraph), Python should be less verbose than all, or nearly all, other languages. One ref says it is less verbose than C or Java (but I suspect that is also true for most other languages), and the other has a table showing 1/(lines of code): C 1, C++ 2.5, Fortran 2, Java 2.5, Visual Basic 4.5, Python Perl and Smalltalk all 6. So it's ahead of some pretty small languages, and equal with Perl and Smalltalk - nothing special. And it's from studies done in 1998-2000, so out of date. [[User:Adpete|Adpete]] ([[User talk:Adpete|talk]]) 06:05, 21 March 2018 (UTC)
 
== Python 2 & 3 ==
 
Should the second sentence of the lead in our very highest level introductory article on Python throw new readers immediately into the issue of Py2 vs Py3? See [https://en.wikipedia.org/w/index.php?title=Python_(programming_language)&diff=837035671&oldid=836970091] & [https://en.wikipedia.org/w/index.php?title=Python_(programming_language)&diff=837036635&oldid=837036269]. [[User:Andy Dingley|Andy Dingley]] ([[User talk:Andy Dingley|talk]]) 09:53, 18 April 2018 (UTC)
:No, thanks for removing it. I take the point about 2 and 3 being different languages, but that is a detail for elsewhere in the article. [[User:Johnuniq|Johnuniq]] ([[User talk:Johnuniq|talk]]) 10:02, 18 April 2018 (UTC)
:: I think it's more than a "detail" and could use a substantial section. However it doesn't belong ''so early''. Python is growing rapidly at the moment. A lot of Python coders now (by head count, rather than LoC count) have simply never used 2. We could even try an article on the two (easily notable), but I think that would probably get stomped as [[WP:NOTMANUAL]]. [[User:Andy Dingley|Andy Dingley]] ([[User talk:Andy Dingley|talk]]) 10:09, 18 April 2018 (UTC)
 
== Adding a "Learning Methods" section ==
 
Hello. New wiki editor here so I apologize if this topic has been hashed out before(although I couldn't find it in the talk archives). Would it be a good idea to add a short section about commond, and free, ways that programmers learn Python? I am thinking Python's built in library [https://docs.python.org/3.7/library/turtle.html turtle], Google's [https://developers.google.com/edu/python/ free python course], etc. Since many people who land on this wiki will have at least a cursory interest in actually learning the basics of Python, it seems like a good place to encourage free and open source materials. [[User:Muhareer|Muhareer]] ([[User talk:Muhareer|talk]]) 15:32, 23 August 2018 (UTC)
* It would have to be compliant with [[WP:NOTHOWTO]]. [[User:ALTAF ANSARI04/sandbox]] certainly isn't.
: There's also the problem that it's now the start of term for Indian colleges and already we've seen a lot of trivial vandalism, and some well-intentioned but inappropriate changes. As a result, the article is likely to be locked from editing by new editors altogether.
: It is difficult to use WP articles for three things simultaneously, although colleges keep trying! The article ''should'' be here as an encyclopedia article. It's not Wikipedia's role to be a classroom exercise in how to write articles though, obvious though that is as a thing to do in colleges. So it's good to get students engaged with article writing, but it must never be at the cost of the encyclopedia quality of those articles. Students also want to write a whole new article from scratch, and that's hard, as so many topics have been started now and what they need is expansion and improvement, not initial creation. It's much harder to ''teach'' article writing, when it's work on an existing article than when it's all new. The third goal that colleges keep wanting to do is to write "how to" tutorial articles. These just don't belong ''here''. There are places they do belong, even within Wikimedia projects, but not on the encyclopedia. [[User:Andy Dingley|Andy Dingley]] ([[User talk:Andy Dingley|talk]]) 09:21, 24 August 2018 (UTC)
 
== Semi-protected edit request on 17 September 2018 ==
 
{{edit semi-protected|Python (programming language)|answered=yes}}
Delete "(see Wikipedia's "Python IDE" article), " since there is not such article (any more?) and the link target is the same as the "see also" a few lines above. [[Special:Contributions/2001:638:A0A:1192:1CFE:845C:B132:107F|2001:638:A0A:1192:1CFE:845C:B132:107F]] ([[User talk:2001:638:A0A:1192:1CFE:845C:B132:107F|talk]]) 10:59, 17 September 2018 (UTC)
:[[File:Yes check.svg|20px|link=|alt=]] '''Done'''<!-- Template:ESp --> <span style="text-shadow:#396 0.2em 0.2em 0.5em; class=texhtml">[[User:L293D|<b style="color:#060">L293D</b>]]&nbsp;([[User talk:L293D#top|<b style="color:#000">☎</b>]]&nbsp;•&nbsp;[[Special:Contributions/L293D|<b style="color:#000">✎</b>]])</span> 11:45, 17 September 2018 (UTC)
 
== Reads like a fan page ==
 
I came to this page to read about Python, but first I had to sit through how awesome the creator is, how long he worked as a leader and innovator, see a picture of him drinking beer... <!-- Template:Unsigned IP --><small class="autosigned">—&nbsp;Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[Special:Contributions/73.221.162.176|73.221.162.176]] ([[User talk:73.221.162.176#top|talk]]) 15:05, 16 October 2018 (UTC)</small> <!--Autosigned by SineBot-->
 
:Agreed. I cut the "History" section substantially and substituted a different photo of van Rossum from [[Commons:Category:Guido van Rossum]]. Because there are separates article on the [[history of Python]] and [[Guido van Rossum]], I hope we won't get too many complaints about these changes.
 
:In the future, please feel free to make these kinds of changes yourself. The Wikimedia culture encourages us to [[Wikipedia:Be bold#Be careful|be bold but not reckless]], writing from a [[Wikipedia:Neutral point of view|neutral point of view]], [[Wikipedia:Citing sources|citing credible sources]].
 
:In particular, if you still think that this reads like a fan page, feel free to make other edits -- but don't be surprised or offended if others have have different ideas. There's a fine art to communicating more by saying less. [[User:DavidMCEddy|DavidMCEddy]] ([[User talk:DavidMCEddy|talk]]) 16:33, 16 October 2018 (UTC)
 
== the loop variable of a for loop is NOT local in Python, it is global ==
 
in the section
 
'''Statements and control flow'''
 
it says under the description of the '''for''' keyword that it:
 
iterates over an iterable object, capturing each element to a local variable for use by the attached block.
 
the variable that the '''for''' loop uses is NOT local to the body of the loop, it is GLOBAL to the
file:
 
for name in ['ted', 'ed', 'ned']:
pass
 
print(name) # this will print 'ned' because name is NOT local
 
(interestingly the loop variable in a list comprehension or generator expression IS local.)
 
[[User:Quizdog|Quizdog]] ([[User talk:Quizdog|talk]]) 03:32, 24 November 2018 (UTC)
:Well it's not global to the file. If the above is in a function, <code>name</code> cannot be accessed from another function. [[User:Johnuniq|Johnuniq]] ([[User talk:Johnuniq|talk]]) 04:05, 24 November 2018 (UTC)
 
== Steps down after 30 years ==
 
Who's doing the math here -- some magazine article? Even December 1989 until July 2018 isn't 30 years. Therefore September 1990 through July 2018 is definitely less than 30 years. If Wikipedia is just duplicating glorified journalistic fluff then what good is it? <!-- Template:Unsigned --><small class="autosigned">—&nbsp;Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:216.228.181.182|216.228.181.182]] ([[User talk:216.228.181.182#top|talk]] • [[Special:Contributions/216.228.181.182|contribs]]) 12:44, 12 August 2018 (UTC)</small>
:It's from one of the cited sources, which I think was just rounding up. It obviously differs a bit depending on when you count the start, so rather than coming up with something original I just removed the claim for now. -- [[User:Beland|Beland]] ([[User talk:Beland|talk]]) 18:32, 30 November 2018 (UTC)
 
==Order of implementations in the infobox==
In the infobox, there is a list of "Major implementations". The list is currently in alphabetical order, but this puts a relatively minor implementation at the beginning. I think listing them in order of importance would be more appropriate. It might be difficult to determine the order of importance, but the [[Python (programming language)#Implementations]] section does a good job of briefly explaining the differences between the versions. As [[CPython]] is the reference implementation, it should be the first listed in the infobox, and other implementations which are highly compliant and support Python 3 should follow. Implementations which have a limited subset of the Python language or standard library should be later in the list, or not included in the infobox at all. Just my opinion, I made an edit to this infobox list on 20 December 2018 and I'm not going to edit war over it.-<span style="font-family:cursive; color:grey;">[[User talk:gadfium|gadfium]]</span> 22:29, 13 March 2019 (UTC)
 
:Completely agree. Certainly CPython needs to be first; is there an option in the infobox for "other implementations"?
:[[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 09:00, 14 March 2019 (UTC)
 
== Nomination of [[:Portal:Python (programming language)]] for deletion ==
<div class="floatleft" style="margin-bottom:0">[[File:Ambox warning orange.svg|48px|alt=|link=]]</div>A discussion is taking place as to whether '''[[:Portal:Python (programming language)]]''' is suitable for inclusion in Wikipedia according to [[Wikipedia:List of policies and guidelines|Wikipedia's policies and guidelines]] or whether it should be [[Wikipedia:Deletion policy|deleted]].
 
The page will be discussed at [[Wikipedia:Miscellany for deletion/Portal:Haskell (programming language)]] (it's part of a bundled nomination) until a consensus is reached, and anyone is welcome to contribute to the discussion. The nomination will explain the policies and guidelines which are of concern. The discussion focuses on high-quality evidence and our policies and guidelines.
 
Users may edit the page during the discussion, including to improve the page to address concerns raised in the discussion. However, do not remove the deletion notice from the top of the page.<!-- Template:afd-notice --> <span class="smallcaps" style="font-variant:small-caps;">[[User:Northamerica1000|North America]]<sup>[[User talk:Northamerica1000|<span style="font-size: x-small;">1000</span>]]</sup></span> 00:44, 26 March 2019 (UTC)
 
== PEP 8 ==
 
[[PEP8]] redirects here but is not explained in the article. -- [[User:Beland|Beland]] ([[User talk:Beland|talk]]) 15:48, 30 November 2018 (UTC)
 
:Good point. I added it in. [[User:Peterl|peterl]] ([[User talk:Peterl|talk]]) 04:51, 26 March 2019 (UTC)
 
== Languages that influenced Python ==
 
There is a section ''Languages influenced by Python''. There should also be a section describing what languages that influenced Python. It seems likely to me that some of the features that are listed as being influenced by Python were actually features of languages that existed prior to Python. [[User:Sam Tomato|Sam Tomato]] ([[User talk:Sam Tomato|talk]]) 17:03, 27 July 2019 (UTC)