Gentoo Archives: gentoo-user

From: Thanasis <thanasis@××××××××××.org>
To: gentoo-user@l.g.o
Cc: Michael Mol <mikemol@×××××.com>
Subject: Re: [gentoo-user] resume_list.py
Date: Thu, 07 Jun 2012 19:06:11
Message-Id: 4FD0FAFF.5090703@asyr.hopto.org
In Reply to: Re: [gentoo-user] resume_list.py by Michael Mol
1 on 06/07/2012 09:41 PM Michael Mol wrote the following:
2 >
3 > In Python 3.x, 'print' is a function, not a builtin. So it'd be
4 >
5 > print( "blah" )
6 >
7 > instead of
8 >
9 > print "blah"
10 >
11 > There are standard scripts out there for converting between py2 and py3, FWIW.
12 >
13
14 Correct! Thanks!