茨の道も一歩から

インフラ構築からプログラミング(Python・JavaScript)までITに関するブログです。

Python入門:制御構文 while

while

count = 0
while count <= 10:
    print(count)
    count += 1