count = 0
while count < 5:
    #Branche conditionnelle
    if count % 2 == 0:
        print(str(count) + ' is even');
    else:
        print(str(count) + ' is odd');
    count += 1
for count10 in range(10):
    if count10 == 3:
        continue
    if count10 == 5:
        break
    print(count10)
Recommended Posts