私はpython/repyが初めてです。現在のディレクトリのファイルのリストに文字列が存在するかどうかを判断しようとしています。これは私のコードです。
def checkString(filename, string):
input = file(filename) # read only will be default file permission
found = false
searchString = string
for line in input:
if searchString in line:
found = true
break
if callfunc == 'initialize':
print listdir() #this will print list of files
for files in listdir():
checkString(files,"hello")
if found:
print "String found"
else:
print "String not found"
エラーとは何ですか?どうすれば解決できますか?
これをUbuntu 12.04 LTSで実行しています
Full debugging traceback:
"repy.py", line 448, in <module>
"repy.py", line 179, in main
"/home/hardik_darji/REPY/seattle/seattle_repy/virtual_namespace.py", line 78, in __init__
ユーザーのトレースバック:
Exception (with type 'exceptions.ValueError'): Code failed safety check! Error: ("<type 'exceptions.IndentationError'> expected an indented block (line 13)",)