返回列表 發帖
for i in range(1,5+1):
    print('第'+str(i)+'名')

TOP

for i in range(1,100+1):
    print('第'+str(i)+'名'+' xxx')

TOP

返回列表