"https://www.python.org/downloads/"
Guido Van Rossum
A Dutch programmer, popularly known as the author of Python programming language. He created Python in 1989 and was thus named as "Benevolent Dictator for life". He has also worked at Google and Dropbox.
Python doesn't have anything like arrays but, it does provide us with Lists, Sets, Dictionaries and Tuples.
#demo function
def func():
print("This is a Function!")
func()
>>This is a Function!
about
#the python poem
import this
>>The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts......
If you have ever coded in C++ or Java then you'll be familiar with braces {} but for python, there's no chance
from __future__ import braces
>>SyntaxError: not a chance
We can’t define Infinities right? But wait! Not for Python
# Positive Infinity
p_infinity = float('Inf')
if 99999999999999 > p_infinity:
print("The number is greater than Infinity!")
else:
print("Infinity is greatest")
>>Infinity is greatest