Why Turn "Print" into "Print()"????

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Prisoner at War

    Why Turn "Print" into "Print()"????


    Hi, your friendly neighborhood n00b here, just wondering why on earth
    the Py3K folks want to mess with a simple thing like the "print"
    "command" (is that what it's called, a command?), turning it into
    "print()".. .I mean, what's the point, exactly?? To look like a more
    "traditiona l" computer-language format?

    And what's with not supporting the so-called softspace "feature" of
    the current "print" command, where a space after a comma, like
    >>>print "A\n", "B"
    outputs
    >>>A\nB\n
    but with Py3K it will be
    >>>print("A\n ", "B")
    returning
    >>>A\n B\n
    ????

    I was all excited to start learning the language, when suddenly I find
    out that a new version is slated for release late summer/early fall
    this year -- a new version which is not only not backwards-compatible
    with previous versions in many important ways, but even when it comes
    to a little thing like the "print" command!!

    What's up with that??
  • drobinow@gmail.com

    #2
    Re: Why Turn "Print&quo t; into "Print()&q uot;????

    On May 25, 8:26 pm, Prisoner at War <prisoner_at_.. .@yahoo.comwrot e:
    Hi, your friendly neighborhood n00b here, just wondering why on earth
    the Py3K folks want to mess with a simple thing like the "print"
    "command" (is that what it's called, a command?), turning it into
    "print()".. .I mean, what's the point, exactly?? To look like a more
    "traditiona l" computer-language format?
    >
    And what's with not supporting the so-called softspace "feature" of
    the current "print" command, where a space after a comma, like
    >
    >>print "A\n", "B"
    >
    outputs
    >
    >>A\nB\n
    >
    but with Py3K it will be
    >
    >>print("A\n" , "B")
    >
    returning
    >
    >>A\n B\n
    >
    ????
    >
    I was all excited to start learning the language, when suddenly I find
    out that a new version is slated for release late summer/early fall
    this year -- a new version which is not only not backwards-compatible
    with previous versions in many important ways, but even when it comes
    to a little thing like the "print" command!!
    >
    What's up with that??
    See http://www.python.org/dev/peps/pep-3105/
    That should answer all your questions.

    Comment

    • Prisoner at War

      #3
      Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

      On May 25, 8:37 pm, "drobi...@gmail .com" <drobi...@gmail .comwrote:
      >
      >
      See http://www.python.org/dev/peps/pep-3105/
      That should answer all your questions.
      Hey, thanks, I missed that one!

      Not that I understand the rationale given (iman00b), but oh well, so
      it looks like a real function now.

      Might you have any idea, BTW, whether the upcoming "Head First
      Programming" from O'Reilly, coming in August, will cover Python 3??
      Unlikely, right? Unless maybe if that guy Vern Ceder (the author) is
      active in the Python development community??

      I'd already pre-ordered the book...but it makes no sense to get a book
      on "old" Python 2.x if it's just going to get deprecated in like a
      year or two! Then again, current Python programs would still work,
      right? I mean, once it's been done up as an executable...Py Sol or
      something should still work, right? (Sorry, iman00b, I don't really
      know how this stuff works....)

      Comment

      • Gabriel Genellina

        #4
        Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

        En Mon, 26 May 2008 02:06:02 -0300, Prisoner at War <prisoner_at_wa r@yahoo.comescr ibió:
        Might you have any idea, BTW, whether the upcoming "Head First
        Programming" from O'Reilly, coming in August, will cover Python 3??
        Unlikely, right? Unless maybe if that guy Vern Ceder (the author) is
        active in the Python development community??
        >
        I'd already pre-ordered the book...but it makes no sense to get a book
        on "old" Python 2.x if it's just going to get deprecated in like a
        year or two! Then again, current Python programs would still work,
        right? I mean, once it's been done up as an executable...Py Sol or
        something should still work, right? (Sorry, iman00b, I don't really
        know how this stuff works....)
        The differences aren't so fundamental or important: it's not an entirely new language, just some ugly old things are being removed or changed in incompatible ways (at *some* time it was supposed to happen - but could not happen on the 2.x series which has to remain backwards compatible)
        Also, Python 3.0 will be released simultaneously with 2.6, and there will be other 2.x releases. Python 2 won't magically disappear from Earth, I don't think Linux distros will come with Python 3.0 by default anytime soon (perhaps not before 3.1).
        So learning Python with a book targeted to 2.5 isn't a waste of time - not at all.
        (This subject has already been discussed several times in this group.)

        --
        Gabriel Genellina

        Comment

        • Prisoner at War

          #5
          Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

          On May 26, 1:37 am, "Gabriel Genellina" <gagsl-...@yahoo.com.a r>
          wrote:
          >
          >
          The differences aren't so fundamental or important: it's not an entirely new language, just some ugly old things are being removed or changed in incompatible ways (at *some* time it was supposed to happen - but could not happen on the 2.x series which has to remain backwards compatible)
          Also, Python 3.0 will be released simultaneously with 2.6, and there will be other 2.x releases. Python 2 won't magically disappear from Earth, I don't think Linux distros will come with Python 3.0 by default anytime soon (perhaps not before 3.1).
          But I'd read that Python 3 is very different in many important ways.
          I read it right there on the Py3K site! I can't make sense of how,
          why, even what, exactly, but that's not a misimpression on my part, I
          certain nonetheless...i t's not just cosmetic changes but important
          ones pertaining to a sort of "linguistic logic" I gather....
          So learning Python with a book targeted to 2.5 isn't a waste of time - not at all.
          Well, I will be learning Python from the excellent materials available
          online, to be sure, but a book that I spend money for, well, I have
          "higher standards" for it, you know, one of which is that it doesn't
          get superseded so soon!
          (This subject has already been discussed several times in this group.)
          Oops, sorry! Just thinking aloud a logical follow-up question....
          --
          Gabriel Genellina

          Comment

          • Ulrich Eckhardt

            #6
            Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

            Prisoner at War wrote:
            On May 26, 1:37 am, "Gabriel Genellina" <gagsl-...@yahoo.com.a rwrote:
            >>
            >>
            >The differences aren't so fundamental or important: it's not an entirely
            >new language, just some ugly old things are being removed or changed in
            >incompatible ways (at *some* time it was supposed to happen - but could
            >not happen on the 2.x series which has to remain backwards compatible)
            >Also, Python 3.0 will be released simultaneously with 2.6, and there will
            >be other 2.x releases. Python 2 won't magically disappear from Earth, I
            >don't think Linux distros will come with Python 3.0 by default anytime
            >soon (perhaps not before 3.1).
            >
            But I'd read that Python 3 is very different in many important ways.
            Yes, and that is the reason it is version 3.x instead of another 2.x. Moving
            to version 3 signals that some changes were done that are _not_ backward
            compatible and not even intended to.
            I read it right there on the Py3K site! I can't make sense of how,
            why, even what, exactly, but that's not a misimpression on my part,
            I certain nonetheless...i t's not just cosmetic changes but important
            ones pertaining to a sort of "linguistic logic" I gather....
            Well, cosmetic or important is always in the eye of the beholder. I
            personally would say that they are important cosmetic changes. You don't
            get any new features or a more Touring-complete language suddenly, but it
            will be much more consistent because it doesn't have to maintain wrong
            decisions of the past, like making 'print' a separate statement when a
            function would do.
            >So learning Python with a book targeted to 2.5 isn't a waste of time -
            >not at all.
            >
            Well, I will be learning Python from the excellent materials available
            online, to be sure, but a book that I spend money for, well, I have
            "higher standards" for it, you know, one of which is that it doesn't
            get superseded so soon!
            As already pointed out, Python 2 will not suddenly cease to exist and
            knowledge about it won't suddenly be worthless either. I guess it will take
            a few years until the use of Python 3 supercedes that of Python 2.

            Uli

            --
            Sator Laser GmbH
            Geschäftsführ er: Thorsten Föcking, Amtsgericht Hamburg HR B62 932

            Comment

            • alex23

              #7
              Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

              On May 26, 7:21 pm, Prisoner at War <prisoner_at_.. .@yahoo.comwrot e:
              But I'd read that Python 3 is very different in many important ways.
              I read it right there on the Py3K site! I can't make sense of how,
              why, even what, exactly, but that's not a misimpression on my part, I
              certain nonetheless...i t's not just cosmetic changes but important
              ones pertaining to a sort of "linguistic logic" I gather....
              Well, let's see what Guido says about the issue:

              Q. I want to learn Python. Should I learn Python 2.6 or Python 3.0?

              A. Definitely learn Python 2.x (the latest version out is 2.5). I
              expect it'll be two years before you'll need to learn Python 3.0, and
              the differences aren't that great from a beginner's perspective: most
              of what you'll learn about 2.x will still hold about 3.0.

              (from http://www.artima.com/weblogs/viewpo...?thread=211200)

              Comment

              • Terry Reedy

                #8
                Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????


                "alex23" <wuwei23@gmail. comwrote in message
                news:b38b30a9-dbe1-4a78-ba14-7fc36ae20bf9@z1 6g2000prn.googl egroups.com...
                | On May 26, 7:21 pm, Prisoner at War <prisoner_at_.. .@yahoo.comwrot e:
                | But I'd read that Python 3 is very different in many important ways.
                | I read it right there on the Py3K site! I can't make sense of how,
                | why, even what, exactly, but that's not a misimpression on my part, I
                | certain nonetheless...i t's not just cosmetic changes but important
                | ones pertaining to a sort of "linguistic logic" I gather....

                One important different for beginners is the elimination of old ways that
                no longer need be learned. Another is that a few inconsistencies have be
                ironed out.

                | Well, let's see what Guido says about the issue:
                |
                | Q. I want to learn Python. Should I learn Python 2.6 or Python 3.0?
                |
                | A. Definitely learn Python 2.x (the latest version out is 2.5). I
                | expect it'll be two years before you'll need to learn Python 3.0, and
                | the differences aren't that great from a beginner's perspective: most
                | of what you'll learn about 2.x will still hold about 3.0.
                |
                | (from http://www.artima.com/weblogs/viewpo...?thread=211200)

                My personal view is a little different. Learn 3.0 unless you have a reason
                to learn 2.x (and there are many possible ;-). Guido wrote the above
                nearly a year ago, before either existed to be learned. As it turned out,
                a decision was made to backport most of the new features of 3.0 into 2.6 to
                ease the transition. Consequently, 2.6 is in some sense the union of 2.5
                and 3.0, so that there is more to learn. This is not a problem for Guido,
                but I can easily imagine that the extra duplication of function might be
                for a new learner, let alone someone like me who liked Python for its
                relative smallness. I personally have no perceived need and hence no plans
                to ever touch 2.6. So, depending on circumstances, again, I might suggest
                2.5 instead of 2.6.

                tjr



                Comment

                • Sverker Nilsson

                  #9
                  Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

                  print a statement

                  let's make it import() if() (C freaks) except() else() what else()

                  It was just convenient to not have to write those parenthesis

                  I agree with the OP, of course if you wrote my post after I began look
                  into this

                  Parentheses for the people..

                  I mean, it's not that.... making it a function?

                  Well I'd have suggested, make a function and call it write()

                  The name print is a misnormer any case

                  So it keeps a misleading name and make it a function, thinks it is a
                  cleanup

                  Just Add a write() builtin function so can we use that if we want a
                  function

                  but keep the print statement, the import statement, the if statement,
                  the for statement...

                  Dont make they functions. Or is this just to throw us out?

                  S...


                  On May 26, 12:20 pm, Ulrich Eckhardt <eckha...@sator laser.comwrote:
                  Prisoner at War wrote:
                  On May 26, 1:37 am, "Gabriel Genellina" <gagsl-...@yahoo.com.a rwrote:
                  >
                  The differences aren't so fundamental or important: it's not an entirely
                  new language, just some ugly old things are being removed or changed in
                  incompatible ways (at *some* time it was supposed to happen - but could
                  not happen on the 2.x series which has to remain backwards compatible)
                  Also, Python 3.0 will be released simultaneously with 2.6, and there will
                  be other 2.x releases. Python 2 won't magically disappear from Earth, I
                  don't think Linux distros will come with Python 3.0 by default anytime
                  soon (perhaps not before 3.1).
                  >
                  But I'd read that Python 3 is very different in many important ways.
                  >
                  Yes, and that is the reason it is version 3.x instead of another 2.x. Moving
                  to version 3 signals that some changes were done that are _not_ backward
                  compatible and not even intended to.
                  >
                  I read it right there on the Py3K site! I can't make sense of how,
                  why, even what, exactly, but that's not a misimpression on my part,
                  I certain nonetheless...i t's not just cosmetic changes but important
                  ones pertaining to a sort of "linguistic logic" I gather....
                  >
                  Well, cosmetic or important is always in the eye of the beholder. I
                  personally would say that they are important cosmetic changes. You don't
                  get any new features or a more Touring-complete language suddenly, but it
                  will be much more consistent because it doesn't have to maintain wrong
                  decisions of the past, like making 'print' a separate statement when a
                  function would do.
                  >
                  So learning Python with a book targeted to 2.5 isn't a waste of time -
                  not at all.
                  >
                  Well, I will be learning Python from the excellent materials available
                  online, to be sure, but a book that I spend money for, well, I have
                  "higher standards" for it, you know, one of which is that it doesn't
                  get superseded so soon!
                  >
                  As already pointed out, Python 2 will not suddenly cease to exist and
                  knowledge about it won't suddenly be worthless either. I guess it will take
                  a few years until the use of Python 3 supercedes that of Python 2.
                  >
                  Uli
                  >
                  --
                  Sator Laser GmbH
                  Geschäftsführer : Thorsten Föcking, Amtsgericht Hamburg HR B62 932

                  Comment

                  • alex23

                    #10
                    Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

                    On May 27, 5:47 pm, Sverker Nilsson <s...@sncs.sewr ote:
                    Dont make they functions. Or is this just to throw us out?
                    Have you even bothered to read the reasoning for this change since the
                    last time you got your knickers twisted over it?

                    The title says it all – this PEP proposes a new print() builtin that replaces the print statement and suggests a specific signature for the new function.


                    I don't see "piss everyone off" listed there anywhere.

                    Personally, I believe if you're writing code of any serious length,
                    you generally shouldn't be using 'print' anyway, using the logging
                    module allows for a lot more flexibility.

                    If you're bothered by having to type the parentheses while in the
                    interpreter, try using IPython with it's autocall mode turned on.

                    Comment

                    • Paddy

                      #11
                      Re: Why Turn &quot;Print&quo t; into &quot;Print()&q uot;????

                      On May 27, 12:14 pm, Sverker Nilsson <s...@sncs.sewr ote:
                      I had bothered. Volunterly that is too. Becausa I care.
                      >
                      Should we piss of about py3k? It's a debate.
                      >
                      I suggest you try and drum up some support for your
                      position. If you don't get much, then maybe you should
                      reconsider your stance? And if you do, then you as a group
                      might find a more effective way to persuade others to
                      change.

                      - Paddy.


                      Comment

                      Working...