Re: [Tutor] manually sorting variables

2007-09-07 Thread Alan Gauld
"Christopher Spears" <[EMAIL PROTECTED]> wrote > Have the user enter three numeric values and store > them in three different variables. Without using > lists or sorting algorithms, manually sort these three > numbers from smallest to largest. Hmm, the restriction of not using a sorting algori

Re: [Tutor] manually sorting variables

2007-09-06 Thread Kent Johnson
Christopher Spears wrote: > I'm working out of Core Python Programming (2nd > Edition) by Wesley Chun. > > Here is the problem: > > Have the user enter three numeric values and store > them in three different variables. Without using > lists or sorting algorithms, manually sort these three > num

[Tutor] manually sorting variables

2007-09-06 Thread Christopher Spears
I'm working out of Core Python Programming (2nd Edition) by Wesley Chun. Here is the problem: Have the user enter three numeric values and store them in three different variables. Without using lists or sorting algorithms, manually sort these three numbers from smallest to largest. Here is what