EvilZone

Programming and Scripting => Scripting Languages => : ande October 03, 2010, 06:58:59 PM

: Starting Python scripting - Setting up a Python environment
: ande October 03, 2010, 06:58:59 PM
Starting Python scripting
Setting up a Python environment
Tutorial by ande for Evilzone

Contents _
0x00 - Python
0x01 - Software
0x02 - Starting Python scripting



0x00 - Python
Python - A easy to set up, dynamic scripting language, great for small quick projects but can be used for most about everything. Python can be set up on most OS's, I will be covering Windows and Debian(Or any other Linux distribution with APT installed).



0x01 - Software
In order to run any Python script what so ever you will need the Python engine.

Windows
Python for windows can be downloaded at www.python.org, http://python.org/ftp/python/2.7/python-2.7.msi
Just install it as you wish, and remember where you installed it. By default its c:\Python27 or something along those lines.

Open CMD and navigate to the folder you installed Python( cd c:\Python27 ). Then write python and hit enter. If you get something like this:
Python 2.7 (r27:82525, Jul  4 2010, 09:01:59) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>>

You have done it right and are ready to start scripting!


Linux
To install Python run this command:

Then run "python", if you get something like this:
Python 2.5.2 (r252:60911, Jan 24 2010, 14:53:14)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

You have done it right and are ready to start scripting!



0x02 - Starting Python scripting
Python scripting is fairly easy, create .py files and stuff some Python script inside it and run "python YourScript.py". Here is a few examples:

Simple Hello World print
:
print "Hello World"

Variable print
:
Variable1 = "Hello World"
print Variable1

Math + print
:
Var1 = 10
Var2 = 10
Var3 = Var1 + Var2
print Var3

A great site for further quick learning: http://www.sthurlow.com/python/
A great example site for Python and many other languages: http://www.java2s.com/Tutorial/Python/CatalogPython.htm / http://www.java2s.com/Code/Python/CatalogPython.htm
: Re: Starting Python scripting - Setting up a Python environment
: Bursihido March 27, 2011, 12:59:30 AM
Nice work ande :)
: Re: Starting Python scripting - Setting up a Python environment
: hanorotu August 18, 2012, 10:28:52 AM
Thanks, this is the alternative for the java/javascript.

It's looking good so far. Pretty easy to code in this. More natural.
: Re: Starting Python scripting - Setting up a Python environment
: Ullen September 10, 2012, 01:08:56 PM
Thanks ande. I'm trying to learn Python.
: Re: Starting Python scripting - Setting up a Python environment
: Dark Nebulae October 06, 2012, 11:16:02 AM
Hey admin, can u please post tutorials for RUBY language. It would be a great help.
: Re: Starting Python scripting - Setting up a Python environment
: rxsmed November 11, 2012, 03:05:38 AM
Well i'm learning Python as a first programming language and i can tell, its cool and easy to learn.
I found this book (http://www.google.com/url?sa=t&rct=j&q=python%20programming%20pdf&source=web&cd=3&ved=0CDoQFjAC&url=http%3A%2F%2Fciteseerx.ist.psu.edu%2Fviewdoc%2Fdownload%3Fdoi%3D10.1.1.111.6062%26rep%3Drep1%26type%3Dpdf&ei=7AefUIGxIKm8iAfuvYDQAQ&usg=AFQjCNFyDFAoTuPioXb1mYk0Wel9_z9u_w&cad=rja) to be interesting as a first one and theres also this one here. (http://www.openbookproject.net/thinkcs/python/english2e/) (First is PDF, second is HTML).
Avoid "learning python the hard way" cuz it sucks.

Bye.
: Re: Starting Python scripting - Setting up a Python environment
: Corrupted_Fear November 11, 2012, 04:05:29 AM
so glad to see a python tutorial here. And "Learning python the hard way" isn't a good beginner book, but more like a second level book. It gives you examples for you to copy and then explains how they work. Not a good starter if you have no idea how to work they Python language.
: Re: Starting Python scripting - Setting up a Python environment
: ande November 19, 2012, 10:49:06 AM
Hey admin, can u please post tutorials for RUBY language. It would be a great help.

Sorry for a very late reply. But oh well. I am afraid I don't know ruby all that well, but I encourage anyone who do to make one like this.
: Re: Starting Python scripting - Setting up a Python environment
: pyte December 09, 2012, 08:26:32 AM
Ande


python happens to be my latest darlin though new in programming/ screepting i can already see its going to be cool.
one problem though, MODULES are such a hustle to find.is there any way to update and install all modules at a go?
: Re: Starting Python scripting - Setting up a Python environment
: ande December 10, 2012, 05:08:39 PM
Ande


python happens to be my latest darlin though new in programming/ screepting i can already see its going to be cool.
one problem though, MODULES are such a hustle to find.is there any way to update and install all modules at a go?

If you are not linux, hopefully debian based. A lot of python modules can be found with aptitude and easily installed from there.

If not, or you cant find a package version of the module you want. Here is everything you need to know: http://docs.python.org/2/install/index.html
: Re: Starting Python scripting - Setting up a Python environment
: pyte December 10, 2012, 09:47:40 PM
seems il eventualy join the linux revolution now that im interested in network securities.

: Re: Starting Python scripting - Setting up a Python environment
: EMOKDOOM February 22, 2013, 05:26:51 PM
Care to show how to run the interactive interpreter?
I've been trying from Pythons documentation and some ebook i got from here but i can't seem to get it down.
: Re: Starting Python scripting - Setting up a Python environment
: Kulverstukas February 22, 2013, 05:52:00 PM
Care to show how to run the interactive interpreter?
Start -> Run -> type in "python" -> press enter -> should work.
If not then do:
Start -> Run -> type in "cmd" -> press enter -> cd into where you installed python -> type in "python" -> should work.
: Re: Starting Python scripting - Setting up a Python environment
: EMOKDOOM February 24, 2013, 11:29:23 AM
Oh, i'm sorry, think i explained wrong.

I wanted to run an output box. Like the one on codeacademy or learnpthon.org
Is it even possible or do i need some other Python interpreter?
: Re: Starting Python scripting - Setting up a Python environment
: Kulverstukas February 24, 2013, 06:11:29 PM
I wanted to run an output box. Like the one on codeacademy or learnpthon.org
Is it even possible or do i need some other Python interpreter?
Regardless, isn't the Python shell not good enough?
: Re: Starting Python scripting - Setting up a Python environment
: EMOKDOOM February 24, 2013, 06:41:08 PM
It is, i'm sure it's just a matter of getting use to it though.
I just got comfortable with the learning environment from codeacademy and thought it'd be cool to have on my PC.
: Re: Starting Python scripting - Setting up a Python environment
: Kulverstukas February 24, 2013, 06:44:54 PM
Well, Python shell is most likely the closest you can get with offline software.
: Re: Starting Python scripting - Setting up a Python environment
: techb February 24, 2013, 11:39:57 PM
Could also use the IDE it came with called Idle. It has a python shell in it.
: Re: Starting Python scripting - Setting up a Python environment
: EMOKDOOM February 25, 2013, 04:36:42 AM
IDLE (Python GUI) it say on task bar then Python Shell on top when it's open. I'm sure that's the one i have.
I think I'll just stick to it until I'm more familiar with programming jargon; I'm confused as hell as it is.
: Re: Starting Python scripting - Setting up a Python environment
: TiRoX June 04, 2014, 04:30:22 AM
It is great!  Tho something confuses me... Whenever i would say


:
Variable1="Hello World"
print Variable1
It follows
:
SyntaxError: invalid syntax

now this is starting to harass me.  =/ .. or to bother... at least.
: Re: Starting Python scripting - Setting up a Python environment
: Architect June 04, 2014, 07:08:13 AM
Please don't dig up old posts, but I will answer your question.
You forgot the spaces around the "=" sign and you forgot the parenthesis in the "print(Variable)" command.
Different ways to print:

: (python)
>>> Variable = "5"
>>> print('Variable') #literally print "Variable"
Variable
>>> print(Variable) #print actual value of a variable
5

Edit: Post an introduction will ya
: Re: Starting Python scripting - Setting up a Python environment
: Kulverstukas June 04, 2014, 07:14:18 AM
AFAIK print() is P3 syntax, just "print" is for P2.
: Re: Starting Python scripting - Setting up a Python environment
: TiRoX June 04, 2014, 12:22:30 PM
Thanks for replying.. Sorry for pushing old thread.. but at least its working now. =)
: Re: Starting Python scripting - Setting up a Python environment
: Architect June 04, 2014, 02:10:48 PM
AFAIK print() is P3 syntax, just "print" is for P2.
'print(Variable1)' and 'print Variable1' are the same thing essentially in 2.7.x.

: (python)
Python 2.7.6 (default, May 25 2014, 00:42:52)
[GCC 4.7.2 20120921 (Red Hat 4.7.2-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> Variable1 = "5"
>>> print Variable1
5
>>> print(Variable1)
5
: Re: Starting Python scripting - Setting up a Python environment
: Kulverstukas June 04, 2014, 02:43:22 PM
'print(Variable1)' and 'print Variable1' are the same thing essentially in 2.7.x.
Yes, in P2. In P3 only "print()" is available.
: Re: Starting Python scripting - Setting up a Python environment
: Architect June 04, 2014, 04:19:21 PM
Why would you even want to use 3.x?
: Re: Starting Python scripting - Setting up a Python environment
: L0aD1nG October 26, 2014, 05:50:34 PM
Great tutorial, for a fast Python start up.
I would recommend starting with python2.7, if there is not a specific reason for 3.x .

At last I would like to point out that in the most Debian based Linux distros python2.6 and python2.7 will be pre-installed normally at least both are pre-installed on Debian stable itself.

Cheers!

Helpful Note
On Debian based Linux distros  you can install idle as a starting 'IDE' with : apt-get install idle-python2.7;
: Re: Starting Python scripting - Setting up a Python environment
: L0aD1nG October 27, 2014, 10:35:07 AM
FL0W if you are looking for the best Python IDE just install Pycharm through here : https://www.jetbrains.com/pycharm/
: Re: Starting Python scripting - Setting up a Python environment
: xtream1101 October 27, 2014, 02:30:26 PM
+1 for PyCharm (https://www.jetbrains.com/pycharm/) for the best Python IDE
: Re: Starting Python scripting - Setting up a Python environment
: Dan John July 31, 2015, 01:31:19 PM
Well i'm learning Python as a first programming language and i can tell, its cool and easy to learn.
I found this book (http://www.google.com/url?sa=t&rct=j&q=python%20programming%20pdf&source=web&cd=3&ved=0CDoQFjAC&url=http%3A%2F%2Fciteseerx.ist.psu.edu%2Fviewdoc%2Fdownload%3Fdoi%3D10.1.1.111.6062%26rep%3Drep1%26type%3Dpdf&ei=7AefUIGxIKm8iAfuvYDQAQ&usg=AFQjCNFyDFAoTuPioXb1mYk0Wel9_z9u_w&cad=rja) to be interesting as a first one and theres also this one here. (http://www.openbookproject.net/thinkcs/python/english2e/) (First is PDF, second is HTML).
Avoid "learning python the hard way" cuz it sucks.

Bye.

Wow, I was just about to post a thread asking where's a good place to start with Python and now look where I've found me.
Why thank you! 8)
: Re: Starting Python scripting - Setting up a Python environment
: applebucked October 26, 2015, 08:13:20 PM
For Mac OS, there is a python shell already built in within the operating system. But you can install the version on the website as well because I think the one that's bundled is already quite old.

If you want to work in a Unix-like environment in Windows, which is what I do personally, I recomment Cygwin64 and installing a Python package.