Udemyの動画学習でもPythonを勉強しよう!
「平日の夜の勉強会には時間が間に合わなくて参加できない」「通勤時間のわずかな隙間時間を勉強時間にあてたい」「本ではよく分からないところを動画で理解を深めたい」そんなあなたはUdemyの動画学習がお勧めです!
UdemyのPythonおすすめ33講座レビューリスト[回答1]
a = 0
while a < 5:
a += 1
print(a)
[回答2]
a = 0
while a < 5:
print(a)
a += 1
print('処理を終了します')
[回答3]
b = 5
while b > 0:
print(b)
b = b - 1
[回答4]
a = 0
while a < 4:
print("みなさんこんにちは。")
a = a + 1
[回答5]
b = 5
while b > 0:
print(b)
b = b - 1
else:
print('処理を終了します')
[回答6]
while a < 50:
a += 1
if a % 2 == 0:
print(a)
[回答7]
a = 0
while a <= 3:
if a == 2:
break
print("みなさんこんにちは。")
a = a + 1
[回答8]
a = 0
while a <= 5:
if a == 3:
a = a + 1
continue
print("みなさんこんにちは。")
a = a + 1
[回答9]
a = 0
while a <= 5:
if a == 3:
print("スキップ")
a = a + 1
continue
print("みなさんこんにちは。")
a = a + 1
[回答10]
import random
while True:
d = int(input('手を入力[0:グー,1:チョキ,2:パー]>>'))
e = random.randint(0,2)
c = ['グー', 'チョキ', 'パー']
print('あなたは' + c[d], '相手は' + c[e])
if d == e:
print('あいこ')
continue
elif (d + 3 - e) % 3 == 1:
print('あなたの負け')
else:
print('あなたの勝ち')
break
Udemyの動画学習でもPythonを勉強しよう!
「平日の夜の勉強会には時間が間に合わなくて参加できない」「通勤時間のわずかな隙間時間を勉強時間にあてたい」「本ではよく分からないところを動画で理解を深めたい」そんなあなたはUdemyの動画学習がお勧めです!
UdemyのPythonおすすめ33講座レビューリスト