如果在 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"
并意识到我需要在其中添加一行,但我不能只在运行命令的 iPython、b/c 中点击“输入”。那么我可以在 iPython 中编辑该多行命令吗?