2017-03-08から1日間の記事一覧

yield ジェネレータ

def sample(): yield 'Is' yield 'Chicago' yield 'Not' yield 'Chicago?' text = ''.join(sample()) #Or you could redirect the fragments to I/O: for part in sample(): f.write(part)