Python is an open source programming language created in 1991 by Guido van Rossum.
git clone https://github.com/python/cpython
#3on PLDB | 32Years Old | 9mRepos |
Python is a widely used high-level programming language for general-purpose programming, created by Guido van Rossum and first released in 1991. An interpreted language, Python has a design philosophy that emphasizes code readability (notably using whitespace indentation to delimit code blocks rather than curly brackets or keywords), and a syntax that allows programmers to express concepts in fewer lines of code than might be used in languages such as C++ or Java. It provides constructs that enable clear programming on both small and large scales. Read more on Wikipedia...
def square(num):
return num * num
print("Hello, world!")
#!/usr/bin/env python2.4
print "Python"
and as assert break class continue def del elif else except False finally for from global if import in is lambda None nonlocal not or pass raise return True try while with yield