これが私がこれまでに持っているものです:
import string
だから私はユーザーに5語だけを求める5語の文章を書かせます:
def main(sentence = raw_input("Enter a 5 worded sentence: ")):
if len(words)<5:
words = string.split(sentence)
wordCount = len(words)
print "The total word count is:", wordCount
ユーザーが5語以上入力した場合:
elif len(words)>5:
print 'Try again. Word exceeded 5 word limit'
5語未満:
else:
print 'Try again. Too little words!'
それは次のように述べ続けています:
UnboundLocalError: local variable 'words' referenced before assignment