vb2Py - While

Contents of this page:

General

While constructs are converted to their Python equivalents.

Default Conversion

VBPython

While Condition
Val = Val + 1
Wend




while Condition:
Val = Val + 1

List of Options

There are no options for the While construct.