Python Programming/Creating Python Programs

From Wikibooks, open books for an open world
Jump to navigation Jump to search


Welcome to Python! This tutorial will show you how to start writing programs.

Python programs are nothing more than text files, and they may be edited with a standard text editor program.[1] What text editor you use will probably depend on your operating system: any text editor can create Python programs. However, it is easier to use a text editor that includes Python syntax highlighting.


Hello, World[edit | edit source]

The very first program that beginning programmers usually write or learn is the "Hello, World!" program. This program simply outputs the phrase "Hello, World!" then terminates itself. Let's write "Hello, World!" in Python!

Open up your text editor and create a new file called hello.py containing just this line (you can copy-paste if you want):

print('Hello, World!')

The below line is used for Python 3.x.x

print("Hello, World!")

You can also put the below line to pause the program at the end until you press anything.

input()

This program uses the print function, which simply outputs its parameters to the terminal. By default, print appends a newline character to its output, which simply moves the cursor to the next line.

Note:
In Python 2.x, print is a statement rather than a function. As such, it can be used without parentheses, in which case it prints everything until the end of the line and accepts a standalone comma after the final item on the line to indicate a multi-line statement. In Python 3.x, print is a proper function expecting its arguments inside parentheses. Using print with parentheses (as above) is compatible with Python 2.x and using this style ensures version-independence.


Now that you've written your first program, let's run it in Python! This process differs slightly depending on your operating system.

Windows[edit | edit source]

  • Create a folder on your computer to use for your Python programs, such as C:\pythonpractice, and save your hello.py program in that folder.
  • In the Start menu, select "Run...", and type in cmd. This will cause the Windows terminal to open.
  • Type cd \pythonpractice to change directory to your pythonpractice folder, and hit Enter.
  • Type hello.py to run your program!

If it didn't work, make sure your PATH contains the python directory. See Getting Python.

Mac[edit | edit source]

  • Create a folder on your computer to use for your Python programs. A good suggestion would be to name it pythonpractice and place it in your Home folder (the one that contains folders for Documents, Movies, Music, Pictures, etc). Save your hello.py program into it. Open the Applications folder, go into the Utilities folder, and open the Terminal program.
  • Type cd pythonpractice to change directory to your pythonpractice folder, and hit Enter.
  • Type python ./hello.py to run your program!

Note:
If you have both Python 2 and Python 3 installed (Your machine comes with a version of Python 2 but you can install Python 3 as well), you should run python3 hello.py

Linux[edit | edit source]

  • Create a folder on your computer to use for your Python programs, such as ~/pythonpractice, and save your hello.py program in that folder.
  • Open up the terminal program. In KDE, open the main menu and select "Run Command..." to open Konsole. In GNOME, open the main menu, open the Applications folder, open the Accessories folder, and select Terminal.
  • Type cd ~/pythonpractice to change directory to your pythonpractice folder, and hit Enter.
  • Don't forget to make the script executable by chmod +x.
  • Type python ./hello.py to run your program!

Note:
If you have both Python version 2.6.1 and Python 3.0 installed (Very possible if you are using Ubuntu, and ran sudo apt-get install python3 to have python3 installed), you should run python3 hello.py

Linux (advanced)[edit | edit source]

  • Create a folder on your computer to use for your Python programs, such as ~/pythonpractice.
  • Open up your favorite text editor and create a new file called hello.py containing just the following 2 lines (you can copy-paste if you want):[2]
#! /usr/bin/python
print('Hello, world!')

Note:
If you have both python version 2.6.1 and version 3.0 installed (Very possible if you are using a debian or debian-based (Ubuntu, Mint, …) distro, and ran sudo apt-get install python3 to have python3 installed), use

#! /usr/bin/python3
print('Hello, world!')
  • save your hello.py program in the ~/pythonpractice folder.
  • Open up the terminal program. In KDE, open the main menu and select "Run Command..." to open Konsole. In GNOME, open the main menu, open the Applications folder, open the Accessories folder, and select Terminal.
  • Type cd ~/pythonpractice to change directory to your pythonpractice folder, and hit Enter.
  • Type chmod a+x hello.py to tell Linux that it is an executable program.
  • Type ./hello.py to run your program!
  • In addition, you can also use ln -s hello.py /usr/bin/hello to make a symbolic link hello.py to /usr/bin under the name hello, then run it by simply executing hello.

Note that this mainly should be done for complete, compiled programs, if you have a script that you made and use frequently, then it might be a good idea to put it somewhere in your home directory and put a link to it in /usr/bin. If you want a playground, a good idea is to invoke mkdir ~/.local/bin and then put scripts in there. To make ~/.local/bin content executable the same way /usr/bin does type $PATH = $PATH:~/local/bin (you can add this line to your shell rc file, for example ~/.bashrc).

Note:
File extensions aren't necessary in UNIX-like file-systems. To linux, hello.py means the exact same thing as hello.txt, hello.mp3, or just hello. Linux mostly uses the contents of the file to determine what type it is.

johndoe@linuxbox ~ $ file /usr/bin/hello
/usr/bin/hello: Python script, ASCII text executable

Result[edit | edit source]

The program should print:

Hello, world!

Congratulations! You're well on your way to becoming a Python programmer.

Exercises[edit | edit source]

  1. Modify the hello.py program to say hello to someone from your family or your friends (or to Ada Lovelace).
  2. Change the program so that after the greeting, it asks, "How did you get here?".
  3. Re-write the original program to use two print statements: one for "Hello" and one for "world". The program should still only print out on one line.

Solutions

Notes[edit | edit source]

  1. Sometimes, Python programs are distributed in compiled form. We won't have to worry about that for quite a while.
  2. A Quick Introduction to Unix/My First Shell Script explains what a hash bang line does.