iPython で for ループ、または複数行のコマンドを導入した場合、どのように戻ってそれに行を追加しますか? 私はこれを実行しました:
for row in table.find_all('tr'):
cells = row.find_all('td')
for c,cell in enumerate(cells):
print c,":",cell.get_text().strip()
try:
this = cells[0]
that = cells[1]
the_docket = cells[2]
other_thign = cells[3]
jumble = re.sub('\s+',' ',str(cells[5])).strip()
except:
"Nope"
そして、それに行を追加する必要があることに気付きましたが、コマンドを実行するb/cのiPythonで「Enter」を押すだけではできません。それで、iPythonでその複数行のコマンドを編集できますか?