I want to annotate a type of a variable in a for-loop. I tried this:
for
for i: int in range(5): pass
But it didn\'t work, obv
This works well for my in PyCharm (using Python 3.6)
for i in range(5): i: int = i pass