Introductory Python
Introductory Python
Introductory Python
Introductory Python
Why use Python?
● Python is one of the easiest languages to
learn.
● It allows for rapid development and testing -
essential abilities for the security
professional
● There are a ton of prewritten modules that
you can easily import.
Who uses Python?
● Eve Online - a very popular MMORPG was written with
a Python variation called stackless.
● Battlefield - one of the most popular FPS franchises in
the world has used Python for add-ons and chunks of
the games’ core functionality.
● SymPy - a handy Python library which is often used in
the scientific world for quick algebra.
The Zen of Python
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.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
—Tim Peters
Python, C, and ASM
There are 3 widely recognized levels of programming: low-level (Assembly) ,
high-level (C) , and scripting (Python, Perl, et al.). There are a few important
characteristics of each: