对于如下代码,pvdev会产生未使用变量的警告
for i in range(5):
func()
解决办法:
把变量替换成下划线_,就不会生产告警了。改变后如下:
for _ in range(5):
func()
原因:
>>> 1+2
3
>>> _
3
http://*.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable
对于如下代码,pvdev会产生未使用变量的警告
for i in range(5):
func()
解决办法:
把变量替换成下划线_,就不会生产告警了。改变后如下:
for _ in range(5):
func()
原因:
>>> 1+2
3
>>> _
3
http://*.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable