Re: [BangPypers] scanf replacement in python

2011-11-07 Thread steve
On 11/06/2011 11:59 AM, kracekumar ramaraju wrote: Hello The question might be simple, but it has a trick. * * *c code* *scanf(%d, %d,m,n)* The code can accept two nos separated by a space. *Question*: What is the equivalent in python? *Answer 1:* *p* *Shortcoming*: I need press return

Re: [BangPypers] scanf replacement in python

2011-11-07 Thread kracekumar ramaraju
On Mon, Nov 7, 2011 at 10:07 PM, steve st...@lonetwin.net wrote: On 11/06/2011 11:59 AM, kracekumar ramaraju wrote: Hello The question might be simple, but it has a trick. * * *c code* *scanf(%d, %d,m,n)* The code can accept two nos separated by a space. *Question*: What is the

[BangPypers] scanf replacement in python

2011-11-06 Thread kracekumar ramaraju
Hello The question might be simple, but it has a trick. * * *c code* *scanf(%d, %d, m,n)* The code can accept two nos separated by a space. *Question*: What is the equivalent in python? *Answer 1:* *a, b = int(raw_input('no 1: ')), int(raw_input('no 2: '))* *Shortcoming*: I need press