![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: How to get 4 numbers from the user in one line for easycomparision?
From: George Sakkis <gsakkis@rutgers.edu>
Date: Sun Jul 03 2005 - 17:25:49 CEST
"Alan G" <alan.gauld@freenet.co.uk> wrote:
> > I .... Just need to figure out how to get 4 numbers from
Or if you want to assign these 4 numbers to separate variables, you can
a,b,c,d = map(int, raw_input('Type 4 numbers separated '
If you want to do error handling later, you may need to split this line
George
|