|currentstatus = DGA
}}
{{WikiProject banner shell|class=CB|vital=yes|1=
{{WikiProject Computing |importance=High |science=y |science-importance=Mid |software=y |software-importance=High |free-software=y |free-software-importance=High}}
{{WikiProject Computer science|importance=High}}
{{Wikipedia:Good article reassessment/Python (programming language)/1}}
== "[[:Pyston]]" listed at [[Wikipedia:Redirects for discussion|Redirects for discussion]] ==
== Disambiguation addition ==
[[File:Information.svg|30px]]
The redirect <span class="plainlinks">[//en.wikipedia.org/w/index.php?title=Pyston&redirect=no Pyston]</span> has been listed at [[Wikipedia:Redirects for discussion|redirects for discussion]] to determine whether its use and function meets the [[Wikipedia:Redirect|redirect guidelines]]. Readers of this page are welcome to comment on this redirect at '''{{section link|1=Wikipedia:Redirects for discussion/Log/2025 February 6#Pyston}}''' until a consensus is reached. <!-- Template:RFDNote --> [[User:Duckmather|Duckmather]] ([[User talk:Duckmather|talk]]) 02:32, 6 February 2025 (UTC)
== Plan for Future Edits ==
So there are 2 articles. 1 is about a TLD and the 2nd one is a redirect to this article. I was wondering if I should redirect users to the [[PYC]] Disambiguation page. Please drop a opinion! [[User:Robloxguest3|Robloxguest3]] ([[User talk:Robloxguest3|talk]]) 00:45, 18 August 2024 (UTC)
# Adding more examples showcasing different paradigms
:<small>I had reverted the addition of the hatnote since I didn't immediately think it was undue for the TLD ({{-r|.рус}}, which is actually made up of characters from {{slink|Cyrillic_script_in_Unicode#Basic_Cyrillic_alphabet}}).</small>
:I agree that it is/was difficult to get to the TLD articles since if a user types the latin ".pyc" you only see {{-r|.pyc}}, which is a redirect to this article. Just now the state was changed so that the latin .pyc has been retargeted to the TLD and the TLD has a hatnote added linking to the programming language. [[User:Skynxnex|Skynxnex]] ([[User talk:Skynxnex|talk]]) 14:57, 18 August 2024 (UTC)
::''Yeah I did that I think''. I kinda forgot if I did or not, but I'm pretty sure I did. '''Thanks for your reply!''' [[User:Robloxguest3|Robloxguest3]] ([[User talk:Robloxguest3|talk]]) 18:57, 18 August 2024 (UTC)
We could provide Python examples of list comprehensions, lambda functions, map, filter, reduce in a functional programming context.
==Wiki Education assignment: Introduction to Technical Writing==
{{dashboard.wikiedu.org assignment | course = Wikipedia:Wiki_Ed/CSU_Los_Angeles/Introduction_to_Technical_Writing_(Fall_2024) | assignments = [[User:Christianjgarcia|Christianjgarcia]] | start_date = 2024-08-13 | end_date = 2024-12-17 }}
# Show graph or data of Python popularity in relation to other languages
<span class="wikied-assignment" style="font-size:85%;">— Assignment last updated by [[User:Christianjgarcia|Christianjgarcia]] ([[User talk:Christianjgarcia|talk]]) 17:22, 2 October 2024 (UTC)</span>
# Show examples of using performance optimization tools with Python like Numba, Cython, and PyPy
# Running experimental support for running in a free-threaded mode
[[User: JadPythonWikiMadHanSolo| JadPythonWikiMadHanSolo]] ([[User talk: JadPythonWikiMadHanSolo|talk]]) 1518: 5323, 1626 DecemberMarch 20242025 (UTC) ▼
== Ease of Learning ==
: Hi {{ping|MadHanSolo}}. Please feel free to add if you think that makes sense. However, keep in mind that Wikipedia is not a [[WP:NOTHOWTO|Howto]] or a set or tutorials so if the code examples become too large, they are likely to get deleted. --[[User:McSly|McSly]] ([[User talk:McSly|talk]]) 18:34, 26 March 2025 (UTC)
{{Inappropriate comment
:Hi @[[User:MadHanSolo|MadHanSolo]], I can work towards adding in a brief section of performance optimization taking into account the advice from @[[User:McSly|McSly]] about examples. I was briefly going to cover Just-In-Time Compilation, Static Compilation, Concurrency and Parallelism, and Efficient Data Structures. [[User:Chbeast|Chbeast]] ([[User talk:Chbeast|talk]]) 20:15, 29 March 2025 (UTC)
|action=tag over
|reason=[[WP:TALK#PROPOSE]]
|comment=
Python is often considered one of the easiest programming languages to learn, making it accessible to people of all ages. Its simple, readable syntax emphasizes clarity, allowing beginners to quickly grasp fundamental programming concepts without being overwhelmed by complex rules. Even children can learn Python, thanks to its straightforward design and beginner-friendly resources. The language encourages an interactive learning experience, where users can immediately test and run code in a simple way, making it ideal for newcomers to programming.
== Problems ==
Python's clean and consistent syntax reduces the learning curve, enabling new programmers to focus on solving problems rather than struggling with complicated syntax rules. This simplicity, combined with its powerful capabilities, makes Python an excellent choice for people who are just starting to learn coding. [[User:JadPythonWiki|JadPythonWiki]] ([[User talk:JadPythonWiki|talk]]) 15:44, 16 December 2024 (UTC)
}}
:{{Not done unclear}} Merely pasting text onto a talk page will not get anything done. Is this a change that you want to see incorporated into the article? Please be specific about the change(s) that you want. [[User:Peaceray|Peaceray]] ([[User talk:Peaceray|talk]]) 17:10, 16 December 2024 (UTC)
== Syntax for Beginners ==
{{Inappropriate comment
|action=tag over
|reason=[[WP:TALK#PROPOSE]]
|comment=
Python's syntax is designed to be simple and easy to read, contributing to its popularity as an introductory programming language. Some key features of Python's syntax include:
* '''Print Function''': Python uses the <code>print()</code> function to output data to the console. Unlike many languages, Python does not require semicolons at the end of statements, making it more readable.
* '''Variable Assignment''': Python is dynamically typed, meaning variables are assigned values directly without the need to declare their type. The type is inferred based on the assigned value. Example: <code>name = "JadPythonWiki"</code>
* '''Indentation''': Python uses indentation, rather than braces <code>{}</code>, to define blocks of code. Indentation must be consistent to avoid errors, making Python code clean and readable.
* '''Input''': Python uses the <code>input()</code> function to receive user input. By default, the input is returned as a string, which can be converted to other types if necessary.
* '''Comments''': Python supports single-line comments, which begin with the <code>#</code> symbol. Comments are ignored by the interpreter and are used to document the code.
* '''Function Definition''': Functions in Python are defined using the <code>def</code> keyword, followed by the function name and parameters in parentheses. Python functions can return values using the <code>return</code> statement.
▲[[User:JadPythonWiki|JadPythonWiki]] ([[User talk:JadPythonWiki|talk]]) 15:53, 16 December 2024 (UTC)
}}
1, Why does the programing language template doesn't use an [https://www.python.org/community/logos/ offical logo] of Python, like it [https://en.wikipedia.org/w/index.php?title=Python_(programming_language)&oldid=1299817513 did before]? [[User:Xzkdeng|Xzkdeng]] ([[User talk:Xzkdeng|talk]]) 08:51, 15 July 2025 (UTC)
:{{Not done unclear}} Merely pasting text onto a talk page will not get anything done. Is this a change that you want to see incorporated into the article? Please be specific about the change(s) that you want. [[User:Peaceray|Peaceray]] ([[User talk:Peaceray|talk]]) 17:10, 16 December 2024 (UTC)
== Open"Batteries theincluded" phonremoved ==
Because in the first reference that was given the term "batteries" doesn't show up anymore, and the second reference is a long-withdrawn PEP. [[User:Jae|jae]] ([[User talk:Jae|talk]]) 12:20, 17 July 2025 (UTC)
Python [[Special:Contributions/106.207.97.110|106.207.97.110]] ([[User talk:106.207.97.110|talk]]) 08:11, 11 January 2025 (UTC)
|