I can't figure out how to swap, so that amount and name will match after sort.
Here what I have:
Code:
from numarray import *
import numarray.strings as str

n=input("Enter number of donors to be entered: ")
if n<5:
    print "Please enter more then 5 donors."
    n=input("Enter number of donors to be entered: ")
if n>=300:
    print "Please
...