If I need a for
loop in Python:
for i in range(1,42):
print "spam"
but don't use the i
for anything, pylint complains about the unused variable. How should I handle this? I know you can do this:
for dummy_index in range(1,42):
print "spam"
but doing this seems quite strange to me. Is there a better way?
I'm quite new to Python, so forgive me if I'm missing something obvious.
_
ordummy
prefix, or decide on a different scheme and set PyLint's--dummy-variables-rgx
option accordingly (e.g.,unused_
). – Bernetefor
statement, the only dummy thing around is pylint itself. I'd advise placing this as a bug report in the pylint project. – Heptahedron