「module level variable」を含む例文一覧(2)

  • If a name is bound in a block, it is a local variable of that block.If a name is bound at the module level, it is a global variable.
    ある名前がモジュールレベルで束縛されている場合、名前はグローバル変数 (global variable) です。 - Python
  • (In fact, the standard implementation does not use its locals argument at all, and uses itsglobals only to determine the package context of the import statement.)When the name variable is of the form package.module,normally, the top-level package (the name up till the first dot) is returned, not the module named by name.
    (実際、標準の実装では locals引数を全く使わず、import 文のパッケージ文脈を決定するためだけに globals を使います。 )変数 name が package.module の形式であった場合、通常、name という名のモジュール ではなく トップレベルのパッケージ (最初のドットまでの名前) が返されます。 - Python

例文データの著作権について