Revision 3 as of 2008-06-25 18:28:25

Clear message

Description

This is a simple ["Powerful Python One-Liners"]. It prints the systems's hostname to the screen.

Code

from socket import gethostname; print gethostname()

Download

This program has been uploaded to the Wiki. You can download it as an attachment from this page.

Well, sometimes. A lighter-weight variant that sometimes is desirable is

import os; print os.uname()[1]

Unable to edit the page? See the FrontPage for instructions.