8
は、私はそれが...終わったが、それは私にいくつかの理由でエラーが発生しますないです---ハングマンを再生するプログラムを書いたはTypeError:「int型のオブジェクトが呼び出すことはできません,,, lenは()
import turtle
n=False
y=True
list=()
print ("welcome to the hangman! you word is?")
word=raw_input()
len=len(word)
for x in range(70):
print
print "_ "*len
while n==False:
while y==True:
print "insert a letter:"
p=raw_input()
leenghthp=len(p)
if leengthp!=1:
print "you didnt give me a letter!!!"
else:
y=False
for x in range(len):
#if wo
print "done"
エラー:
leenghthp=len(p)
TypeError: 'int' object is not callable
の可能性の重複:([例外TypeError:「int型のオブジェクトが呼び出すことはできません] http://stackoverflow.com/questions/9767391/typeerror-int-objectそれは
while
が既にが何をするかです-is-not-callable) –