from model import Person def showAllView(list): print 'In our db we have %i users. Here they are:' % len(list) for item in list: print item ...
確定! 回上一頁