请教一个问题

请教一个问题

想了半天,不知道该怎么写,请大家指点一下,谢谢~

def Surface(p):
        ......

p1=...
p2=...
....
p100=...

for i in range(100):
        print  'this is the'+str(i+1)+'surface'
        Surface(????????)
        print 'why i cannot figure it out.'

省略了很多,我是想在循环这100次的时候每次分别使p1,p2,...p100做为Surface这个函数的自变量。但是不知道括号里该怎么把p 和 i 结合起来写~
谢谢大家
把 p1 - p100 的值用 tuple or list 存起來...

ex = ("p1","p100")
for i in ex:
      print "i =",i

i = p1
i = p100

is this what you want??
im newbi too... =]