質問編集履歴
1
書式改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,38 +1,4 @@
|
|
1
|
-
### 前提・実現したいこと
|
2
|
-
|
3
|
-
pythonでじゃんけんゲームをつくりたいです
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
### 発生している問題・エラーメッセージ
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
TypeError Traceback (most recent call last)
|
14
|
-
|
15
|
-
<ipython-input-8-285d7559df91> in <module>()
|
16
|
-
|
17
|
-
28 you_hand = get_you_hand
|
18
|
-
|
19
|
-
29
|
20
|
-
|
21
|
-
---> 30 hand_diff = my_hand - you_hand
|
22
|
-
|
23
|
-
31 view_hand(hand_diff)
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
TypeError: unsupported operand type(s) for -: 'function' and 'function'
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
### 該当のソースコード
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
import random
|
1
|
+
```import random
|
36
2
|
|
37
3
|
def start_messege():
|
38
4
|
|
@@ -94,6 +60,46 @@
|
|
94
60
|
|
95
61
|
view_hand(hand_diff)
|
96
62
|
|
63
|
+
```### 前提・実現したいこと
|
64
|
+
|
65
|
+
pythonでじゃんけんゲームをつくりたいです
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
### 発生している問題・エラーメッセージ
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
TypeError Traceback (most recent call last)
|
76
|
+
|
77
|
+
<ipython-input-8-285d7559df91> in <module>()
|
78
|
+
|
79
|
+
28 you_hand = get_you_hand
|
80
|
+
|
81
|
+
29
|
82
|
+
|
83
|
+
---> 30 hand_diff = my_hand - you_hand
|
84
|
+
|
85
|
+
31 view_hand(hand_diff)
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
TypeError: unsupported operand type(s) for -: 'function' and 'function'
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
```
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
### 該当のソースコード
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
97
103
|
### 試したこと
|
98
104
|
|
99
105
|
|