> > 1) is there an easy way to create lists n such without having to > > quote everything? e.g. > > "plans = [84574 85779 86458]" ----> > > "plans = ['84574','85779','86458']" > > You could do > > plans = "84574 85779 86458".split() That's much easier to type, thanks! -- -matt