Installing Python & Hello World

| No Comments

In this tutorial we'll go over how to install Python on your Windows PC and a quick 'Hello World' application.

  1. First download Python and run the setup - agree to all prompts. Easy.
  2. That's it! Python is now installed. Open up notepad and paste in the following code
print 'Hello world'

Save it as hello.py, and just open a command prompt and run the script like this

C:\> hello.py

Then you will see Hello World! It's great and simple. Next time we'll do some more advanced stuff, had to start somewhere.

Categories

Twitter Feed