Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: Problem with 'print' Date: Sun, 10 Jan 2016 02:09:36 +1100 Lines: 10 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de f9zvIoC2cL5222hNKq7MPQcdVTkw7LBKWzv19qC5CgMg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python,': 0.02; 'cc:addr :python-list': 0.09; 'jan': 0.11; '2016': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'parentheses': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:Problem': 0.16; 'wrote:': 0.16; 'pfxlen:0': 0.18; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'do.': 0.22; 'sat,': 0.23; 'downloaded': 0.24; 'header:In-Reply-To:1': 0.24; 'command': 0.26; 'error': 0.27; 'message-id:@mail.gmail.com': 0.27; 'error.': 0.31; 'file': 0.34; 'received:google.com': 0.35; 'but': 0.36; 'received:209.85': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'missing': 0.37; 'received:209.85.213': 0.37; 'received:209': 0.38; 'subject:with': 0.40; 'hello,': 0.40; 'telling': 0.61; 'chrisa': 0.84; 'pablo': 0.84 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:to :cc:content-type; bh=+EsxaQj2vLyU/rGApMjSk/eYFy3mjNu44ISIqLrVw3U=; b=E846PGMx/LZohmnrYVRKkDmTm2c+e8GfXG9EE8WI/aFnjZPy2JfkudFWmfPg+AvbgD jUOn8pis4ssRESFWGcnQMHKLwRntgAQLgB44Fxk3J/nGJgetp6QmFBZfmWTE0FHtzE0u KtuKDK87WnIX8oSEPpBO0OY5CZ/eqnrAZ7jP8McADaw/3w0fP8+/1UMYq0E28nCe2xXo 6xC8FQUvFPRxiSy5mlX9JF+q62sv6G6aWKjZsIXzh5jFc8SsFPnt/9Qa5mPqlJ+r9NN6 pEgNX5Ycw6LiyM+qo0LZ+H/n2HgE8n2UnM4nETMF0r698OAk7xzli7/GxaTIFdoj4Nwm 4G5Q== X-Received: by 10.50.78.169 with SMTP id c9mr4046152igx.29.1452352176816; Sat, 09 Jan 2016 07:09:36 -0800 (PST) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101405 On Sat, Jan 9, 2016 at 10:40 PM, pablo gormi wrote: > Hello, recently I downloaded python, but when I try to execute one file > with the command 'print' it shows me a error. The error is: > > Missing parentheses in call to 'print' The error is telling you what you need to do. Put parentheses around the call to the print() function. :) ChrisA