指定したファイルを開きたいこのコードがあり、while ループがあるたびにそれをカウントし、最終的に特定のファイルの while ループの総数を出力します。入力ファイルを辞書に変換し、for ループを作成して、while の後にスペースが続く単語が表示されるたびに、WHILE_ に +1 カウントを追加してから、最後に WHILE_ を出力することにしました。
しかし、これはうまくいかないようで、その理由がわかりません。これを修正する助けがあれば大歓迎です。
これは私が現時点で持っているコードです:
WHILE_ = 0
INPUT_ = input("Enter file or directory: ")
OPEN_ = open(INPUT_)
READLINES_ = OPEN_.readlines()
STRING_ = (str(READLINES_))
STRIP_ = STRING_.strip()
input_str1 = STRIP_.lower()
dic = dict()
for w in input_str1.split():
if w in dic.keys():
dic[w] = dic[w]+1
else:
dic[w] = 1
DICT_ = (dic)
for LINE_ in DICT_:
if ("while\\n',") in LINE_:
WHILE_ += 1
elif ('while\\n",') in LINE_:
WHILE_ += 1
elif ('while ') in LINE_:
WHILE_ += 1
print ("while_loops {0:>12}".format((WHILE_)))
これは私が作業していた入力ファイルです:
'''A trivial test of metrics
Author: Angus McGurkinshaw
Date: May 7 2013
'''
def silly_function(blah):
'''A silly docstring for a silly function'''
def nested():
pass
print('Hello world', blah + 36 * 14)
tot = 0 # This isn't a for statement
for i in range(10):
tot = tot + i
if_im_done = false # Nor is this an if
print(tot)
blah = 3
while blah > 0:
silly_function(blah)
blah -= 1
while True:
if blah < 1000:
break
出力は 2 のはずですが、現時点で私のコードは 0 を出力します