473,406 Members | 2,710 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 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 10740
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
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.