On Fri, Dec 12, 2008 at 12:50 PM, Dennis Lee Bieber <[email protected]>wrote:
> On Fri, 12 Dec 2008 03:42:55 -0800 (PST), [email protected] declaimed the > following in comp.lang.python: > > > #!/usr/bin/python > > #Py3k, UTF-8 > > > > bank = int(input("How much money is in your account?\n>>")) > > target = int(input("How much money would you like to earn each year? > > \n>>")) > > > Just for my curiosity -- did Python 3.x (besides turning print into > a function) also change input() to behave as the old raw_input()? > Yes. > > The above would be very discouraged in Python 2.x... in favor of ... > int(raw_input(...)) > > > -- > Wulfraed Dennis Lee Bieber KD6MOG > [email protected] [email protected] > HTTP://wlfraed.home.netcom.com/ > (Bestiaria Support Staff: [email protected]) > HTTP://www.bestiaria.com/ > -- > http://mail.python.org/mailman/listinfo/python-list >
-- http://mail.python.org/mailman/listinfo/python-list
