等效于 python 中的 IDL then begin 语句

Equivalent of IDL's then begin statement in python

只是想知道,我在要转换的 IDL 中有一个 for 循环。我在 IDL 中有:

if ... then begin

我认为这相当于

if ...:

在 python 中,冒号是 "then begin" 命令...

如果我是对的,只是想确认一下。

你完全正确。这是否足够确认?