Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.016 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'output': 0.05; '21,': 0.07; 'cc:addr:python-list': 0.11; 'apis.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'world!': 0.16; 'wrote:': 0.18; 'thanks.': 0.20; 'machine': 0.22; 'cc:addr:python.org': 0.22; 'bytes': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'dec': 0.30; 'message- id:@mail.gmail.com': 0.30; 'about.': 0.31; 'common': 0.35; 'received:google.com': 0.35; 'pm,': 0.38; 'sure': 0.39; 'subject:Hello': 0.72; 'subject:World': 0.91; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=qgZs09MhtvSXwQhy5DA+xHvB3cBtDCsDHq1CMqnUjPI=; b=VMc5Fznr6UWwxONLFlPSqiS2IV7jl5OEHq0XAdBHPs/hnj2VAmOmpl6oPUVAUz0Rsu GRXmWl/JH8OdZSuTM4ZUW1VlePn3qup88D8EUDjy+t0vd1mgHxKx7MXxSNybQNuej5XQ DW1xH4mxO0G5vG03lEf9pv/n+TvDPh2/MxKLRr3/ApwVNVw/TrwvF3IqIw9vC0MP7xjQ m+K3ldQaULSb8p2TKx7KqmiGyIbPgH21Qji50vFggL+y2Gg901bqD15qD40+6XcH7z8J DP7PLmGp0oP8g05l3QvEmXrUoD+JGjtn6f1dT0kw03Z1EdBD2VVAW3k8W8NjKKq9bRKJ PTlg== MIME-Version: 1.0 X-Received: by 10.42.94.14 with SMTP id z14mr12972833icm.59.1419148006707; Sat, 20 Dec 2014 23:46:46 -0800 (PST) In-Reply-To: References: <54957226$0$12975$c3e8da3$5496439d@news.astraweb.com> Date: Sun, 21 Dec 2014 18:46:46 +1100 Subject: Re: Hello World From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1419148015 news.xs4all.nl 2849 [2001:888:2000:d::a6]:44326 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:82714 On Sun, Dec 21, 2014 at 6:44 PM, CM wrote: > Yes, just tested it on the same machine in the terminal and it prints: > > Hello, world! > 13 > > Not sure what the 13 is all about. Thanks. Number of bytes output. It's the return value from the output call - common with low-level APIs. ChrisA