質問編集履歴
3
コードの挿入やり直し
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,9 +14,7 @@
|
|
14
14
|
|
15
15
|
```Python
|
16
16
|
|
17
|
-
コード
|
18
|
-
|
19
|
-
|
17
|
+
def print_hand(hand, name='ゲスト'):
|
20
18
|
|
21
19
|
hands = ['グー', 'チョキ', 'パー']
|
22
20
|
|
@@ -37,3 +35,5 @@
|
|
37
35
|
else:
|
38
36
|
|
39
37
|
print_hand(player_hand, player_name)
|
38
|
+
|
39
|
+
```
|
2
コードの挿入やり直し
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,9 +16,7 @@
|
|
16
16
|
|
17
17
|
コード
|
18
18
|
|
19
|
-
```
|
20
|
-
|
21
|
-
def print_hand(hand, name='ゲスト'):
|
19
|
+
```def print_hand(hand, name='ゲスト'):
|
22
20
|
|
23
21
|
hands = ['グー', 'チョキ', 'パー']
|
24
22
|
|
1
プログラムの入力方法を変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,11 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
|
15
|
+
```Python
|
16
|
+
|
17
|
+
コード
|
18
|
+
|
19
|
+
```
|
16
20
|
|
17
21
|
def print_hand(hand, name='ゲスト'):
|
18
22
|
|
@@ -30,8 +34,6 @@
|
|
30
34
|
|
31
35
|
if player_name == '':
|
32
36
|
|
33
|
-
# 第1引数を変数 player_hand に書き換えてください
|
34
|
-
|
35
37
|
print_hand(player_name)
|
36
38
|
|
37
39
|
else:
|