Python (Programming Language) - Simple English Wikipedia, The Free Encyclopedia
Python (Programming Language) - Simple English Wikipedia, The Free Encyclopedia
(programming
language)
general-purpose, high-level programming
language
Platform Any
OS Any
Major implementations
Dialects
Cython, RPython
Python use
Python is used by hundreds of thousands
of programmers and is used in many
places. Sometimes only Python code is
used for a program, but most of the time it
is used to do simple jobs while another
programming language is used to do more
complicated tasks.
Web development
Scientific programming
Desktop GUIs applications
Network programming
Game programming.
Syntax
Python has a very easy-to-read syntax.
Some of Python's syntax comes from C,
because that is the language that Python
was written in. But Python uses
whitespace to delimit code: spaces or tabs
are used to organize code into groups.
This is different from C. In C, there is a
semicolon at the end of each line and curly
braces ({}) are used to group code. Using
whitespace to delimit code makes Python
a very easy-to-read language.
Expressions …
Example
This is a small example of a Python
program. It shows "Hello World!" on the
screen.
print("Hello World!")
print
ready = True
if ready:
print("Hello World!")
print
x = 1
print(x)
print
x = "Word"
print(x)
print
References
1. Deily, Ned (24 December 2018).
"Python 3.7.2 and 3.6.8 are now
available" . Python Insider. The Python
Core Developers. Retrieved 24
December 2018.
2. Peterson, Benjamin (1 May 2018).
"Python 2.7.15 released" . Python
Insider. The Python Core Developers.
Retrieved 1 May 2018.
3. "PEP 483 -- The Theory of Type Hints" .
Python.org.
4. "Python legal statements" . Python
Software Foundation. Retrieved
January 28, 2012.
Other websites
Official website
Python tutorial
Retrieved from
"https://simple.wikipedia.org/w/index.php?
title=Python_(programming_language)&oldid=6676
638"