私はPython 2.5.1を初めて使用します。次のコードが機能します。
sample3.py
num = 23
while (i !=num ):
print 'bingo !'
break;
===> result: bingo !
しかし、i を j に変更すると
sample3.py
num = 23
while (j !=num ): <--- this is the only difference I changed i to j
print 'bingo !'
break;
===> result: NameError: name 'j' is not defined
変数名「i」がPythonで事前定義されているのは誰でも教えてくれますか?