[Python] do-while Loop

In C

do{
  ...
}
while(condition)

In Python

while True:
  ...
  if not (condition): break

Last Updated on 2023/08/16 by A1go

目錄

目錄
Bitnami