我想要的是在python上做这个:
let okConfirmAction = UIAlertAction(title:"Sim", style: UIAlertActionStyle.default, handler:{ [weak self] (alert:UIAlertAction) -> Void in
//insert code from above
})
但是在一个循环中,所以我不必写100次只有数字变化的行。
答案 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')