472,805 Members | 1,194 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,805 software developers and data experts.

from __future__ import print

Am I the only one that thinks this would be useful? :)

I'd really like to be able to use python 3.0's print statement in
2.x. Is this at least being considered as an option for 2.6? It
seems like it would be helpful with transitioning.
Apr 10 '08 #1
7 10699
2008/4/10, sa*******@gmail.com <sa*******@gmail.com>:
Am I the only one that thinks this would be useful? :)

I'd really like to be able to use python 3.0's print statement in
2.x. Is this at least being considered as an option for 2.6? It
seems like it would be helpful with transitioning.
It's not only considered but have been already implemented. Enjoy. :)

Python 2.6a2+ (trunk:62269, Apr 10 2008, 20:18:42)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>from __future__ import print_function
print "asd"
File "<stdin>", line 1
print "foo"
^
SyntaxError: invalid syntax
>>print("foo")
foo
>
--
http://mail.python.org/mailman/listinfo/python-list

--
Wbr, Andrii Mishkovskyi.

He's got a heart of a little child, and he keeps it in a jar on his desk.
Apr 10 '08 #2
sa*******@gmail.com a écrit :
Am I the only one that thinks this would be useful? :)

I'd really like to be able to use python 3.0's print statement in
2.x.
<nitpick mode="pedantic">
FWIW, the whole point is that in 3.0, print stop being a statement to
become a function...
</nitpick>
Apr 11 '08 #3
On Apr 10, 3:06 pm, "Andrii V. Mishkovskyi" <misho...@gmail.com>
wrote:
2008/4/10, samsli...@gmail.com <samsli...@gmail.com>:
Am I the only one that thinks this would be useful? :)
I'd really like to be able to use python 3.0'sprintstatement in
2.x. Is this at least being considered as an option for 2.6? It
seems like it would be helpful with transitioning.

It's not only considered but have been already implemented. Enjoy. :)
Awesome! I'm still stuck on 2.5 but I'm glad to know it's in 2.6. :)

Jun 27 '08 #4
Lie
On Apr 11, 7:26 pm, Bruno Desthuilliers <bruno.
42.desthuilli...@websiteburo.invalidwrote:
samsli...@gmail.com a écrit :
Am I the only one that thinks this would be useful? :)
I'd really like to be able to use python 3.0's print statement in
2.x.

<nitpick mode="pedantic">
FWIW, the whole point is that in 3.0, print stop being a statement to
become a function...
</nitpick>
But the reason it becomes a function is because being a statement it
is inflexible and there is no way to pass arguments to the print
function, at the cost of extra typing of parentheses. I wish py3k
would make it an option whether to treat print as statement or
function though. Since not all programs require the power of print as
a function and having to type the extra parentheses is a bit tiring if
you're printing lots of things. Probably it may be coupled with a
translator (for source code from statement to function, since the
reverse would not be practical) if you changed your mind.
Jun 27 '08 #5
In article
<ce**********************************@w8g2000prd.g ooglegroups.com>,
Lie <Li******@gmail.comwrote:
I wish py3k
would make it an option whether to treat print as statement or
function though.
Arrrgghhhhh! No, don't even go there. If you want optional parens, use
Perl :-)
Jun 27 '08 #6
Lie
On Apr 13, 7:23 pm, Roy Smith <r...@panix.comwrote:
In article
<ce23a66d-ac4b-4f23-a9ea-8d1592b08...@w8g2000prd.googlegroups.com>,

Lie <Lie.1...@gmail.comwrote:
I wish py3k
would make it an option whether to treat print as statement or
function though.

Arrrgghhhhh! No, don't even go there. If you want optional parens, use
Perl :-)
Not optional parens, but a simple print statement coupled with a
powerful print function. This print statement would only have basic
printing functionality such as :

print "Hello"
print var
print var, "Hello too"

specifically, these would be removed:
print var,
print >unstdout, var

This is because it is sometimes annoying to type this:
print("Hello")
print("World")
print("This")
print("is")
print("Captain")
print("Kirk")

because of the double enclosement (parens () and quotes ""),
especially when you're just slipping a simple debugging statement.

This also eases transition between older codes, because while you uses
regular print statements everyday, you don't do print redirection and
comma-ended printing everyday, and it would be easier to just convert
those advanced printing functionality rather than converting all
printing statements.
Jun 27 '08 #7
Lie schrieb:
On Apr 13, 7:23 pm, Roy Smith <r...@panix.comwrote:
>In article
<ce23a66d-ac4b-4f23-a9ea-8d1592b08...@w8g2000prd.googlegroups.com>,

Lie <Lie.1...@gmail.comwrote:
>> I wish py3k
would make it an option whether to treat print as statement or
function though.
Arrrgghhhhh! No, don't even go there. If you want optional parens, use
Perl :-)

Not optional parens, but a simple print statement coupled with a
powerful print function. This print statement would only have basic
printing functionality such as :

print "Hello"
print var
print var, "Hello too"

specifically, these would be removed:
print var,
print >unstdout, var

This is because it is sometimes annoying to type this:
print("Hello")
print("World")
print("This")
print("is")
print("Captain")
print("Kirk")
You are aware that it is only one character more to type?

It is debatable if print should have gone or not - but once you decide
to have a print-statement I fail to see why you want to rid it of
functionality. The costs for a keyword and special parsing rules are
paid anyway then.

Diez

Diez
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Logan | last post by:
Is there a list with all 'from __future__ import ...' statements (which lists all the statements, in which version of Python the feature was introduced and in which version of Python it will become...
8
by: Jacek Generowicz | last post by:
I have some code, which makes copious use of the @decorator syntax which was introduced in Python2.4. Now I find myself in a situation where I have to run the code under Python 2.3. However, I...
2
by: mithrond | last post by:
i can't use "from __future__ import ..." statement import two statesments in the same time. for the simple code: from __future__ import with_statement, division with file('url.txt','r') as f:...
3
by: Seymour | last post by:
I created a module with the DictAdder subclass as follows: class DictAdder(Adder): def add(self, x, y): new={} for k in x.keys(): new=x for k in y.keys(): new=y return new At the...
7
by: Ron Adam | last post by:
from __future__ import absolute_import Is there a way to check if this is working? I get the same results with or without it. Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) on win 32 ...
1
by: Malcolm Greene | last post by:
Is there any consensus on what "from __future__ import" options developers should be using in their Python 2.5.2 applications? Is there a consolidated list of "from __future__ import" options to...
0
by: Tim Golden | last post by:
Malcolm Greene wrote: Well, that bit's easy: import __future__ print __future__.all_feature_names TJG
1
by: Eric Hanchrow | last post by:
(This is with Python 2.5.2, on Ubuntu Hardy, if it matters.) This seems so basic that I'm surprised that I didn't find anything about it in the FAQ. (Yes, I am fairly new to Python.) Here are...
3
by: J. Cliff Dyer | last post by:
On Thu, 2008-05-08 at 12:00 -0700, Eric Hanchrow wrote: It's the same reason as this: 5 5 6 5 Python "variables" are just names that point at objects. When you
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.