__init__
numaralı dosyada bir dosya açan bir yineleme sınıfı yazdım.Python Özel Yineleyici: StopIteration'da bir dosyayı kapatın
def __init__(self, path):
self.file = open(path, "r")
nasıl yineleme bittikten otomatik olarak bu dosyayı kapatmak mı?
Komple sınıfı:
class Parse(object):
"""A generator that iterates through a CC-CEDICT formatted file, returning
a tuple of parsed results (Traditional, Simplified, Pinyin, English)"""
def __init__(self, path):
self.file = open(path, "r")
def __iter__(self):
return self
def __is_comment(self, line):
return line.startswith("#")
def next(self):
#This block ignores comments.
line = self.file.readline()
while line and self.__is_comment(line):
line = self.file.readline()
if line:
working = line.rstrip().split(" ")
trad, simp = working[0], working[1]
working = " ".join(working[2:]).split("]")
pinyin = working[0][1:]
english = working[1][1:]
return trad, simp, pinyin, english
else:
raise StopIteration()
Yineleme bölümünü paylaşabilir misiniz? '.next()' veya '.__ sonraki __()' metodunu mu kullanıyorsunuz yoksa '__iter__' bir jeneratör metodu mu? –
@MartijnPieters Ben her şeyi paylaşacağım – jsj