Discuss / Python / 交作业

交作业

Topic source

l=['Jones','Jane','Jefferson'] for name in l: print('hello %s'%name) n=0 while n<len(l): print('hello %s'%l[n]) n=n+1


  • 1

Reply