この記事を三行にまとめると
while文do-while文
Pythonのwhile文
この記事は以下の動画の中に出てきたサンプルコードを載せたものです。コピペなどが必要なときに使ってください。
while文
$dice1 = $dice2 = $count = 0;
while($dice1 != 1 || $dice2 != 1) {
$dice1 = rand(1, 6);
$dice2 = rand(1, 6);
$count++;
}
echo "{$count}回振りました";
do-while文
$dice1 = $dice2 = $count = 0;
do {
$dice1 = rand(1, 6);
$dice2 = rand(1, 6);
$count++;
} while($dice1 != 1 || $dice2 != 1);
echo "{$count}回振りました";
Pythonのwhile文
import random
dice1 = dice2 = count = 0
while dice1 != 1 or dice2 != 1:
dice1 = random.randint(1, 6)
dice2 = random.randint(1, 6)
count += 1
else:
print('%s回振りました' % count)