Python Program: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
A [[Python Program]] is a [[computer program]] written in the [[Python programming language]].
A [[Python Program]] is a [[computer program]] composed of [[Python code]] (written in [[Python programming language|Python]]).
* <B><U>Context</U>:</B>
* <B>Context</U>:</B>
** It can make use of a [[Python Variable]].
** It can (typically) use of a [[Python Variable]].
** It can make use of a [[Python Data Structure]].
** It can (typically) use of a [[Python Data Structure]].
** It can make use of a [[Python Function]], such as a [[Python Built-in Function]].
** It can (typically) use a [[Python Function]], such as a [[Python Built-in Function]].
* <B><U>Example(s)</U>:</B>  
** It can (typically) use a [[Python Library]].
** It can range from (typically) being a [[Python Multi-Line Program]] (e.g. a [[python real-world program]]) to being a [[Python Oneliner]].
** ...
* <B>Example(s):</B>  
** [[helloWorld.py]].
** [[helloWorld.py]].
** [[pointStats.py]].
** [[pointStats.py]].
** [[celcius.py]].
** [[celcius.py]].
** a [[Python Oneliner]]
** [[Recursive Python Program]]s.
** other [[Python Example Program]]s http://www.google.com/search?q=python+program+example .
** [[Python Example Program]]s [http://www.google.com/search?q=python+program+example].
* <B><U>Counter-Example(s)</U>:</B>  
** [[PyTorch-based Program]], such as [[PyTorch-based NLP program]]s.
** a [[Perl Program]].
** …
* <B>Counter-Example(s):</B>  
** a [[Julia Program]], [[Perl Program]], [[R Program]], [[Java Program]], [[Scala Program]], [[Ruby Program]], ...
** a [[Python Interactive Session]].
** a [[Python Interactive Session]].
** a [[Java Program]].
* <B>See:</B> [[Python Interpreter]], [[Python Program Template]], [[virtualenv]].
* <B><U>See</U>:</B> [[Python Interpreter]].
 
----
----
----
----

Latest revision as of 03:45, 13 July 2024

A Python Program is a computer program composed of Python code (written in Python).