如何创建一个可以将数字添加到字符串的循环。蟒蛇

时间:2017-07-26 16:22:40

标签: python

我想要的是在python上做这个:

let okConfirmAction = UIAlertAction(title:"Sim", style: UIAlertActionStyle.default, handler:{ [weak self] (alert:UIAlertAction) -> Void in
//insert code from above
})

但是在一个循环中,所以我不必写100次只有数字变化的行。

1 个答案:

答案 0 :(得分:3)

使用格式字符串:

for i in range(1,101):
    sta[i] = net.addStation('sta1', mac='00:00:00:00:00:{:02x}'.format(i), ip='10.0.0.{:d}/8'.format(i), range='30')