質問編集履歴

2

修正

2020/03/01 04:22

投稿

tomatoto11
tomatoto11

スコア10

test CHANGED
File without changes
test CHANGED
@@ -130,23 +130,23 @@
130
130
 
131
131
  root=tk.Tk()
132
132
 
133
- root.geometry("300x400")
133
+ root.geometry("400x150")
134
134
 
135
135
  root.title("数当てゲーム")
136
136
 
137
- labell=tk.Label(root,text="数を入れてね",font=("Helevetica",100))
137
+ labell=tk.Label(root,text="数を入れてね",font=("Helevetica",14))
138
138
 
139
- labell.place(x=400,y=400)
139
+ labell.place(x=20,y=20)
140
140
 
141
- editbox1=tk.Entry(width=400)
141
+ editbox1=tk.Entry(width=4,font=("Helvetica",28))
142
142
 
143
- editbox1.place(x=100,y=100)
143
+ editbox1.place(x=120,y=60)
144
144
 
145
145
 
146
146
 
147
147
  button1=tk.Button(root,text="チェック",font=("Helvetica",14),command=ButtonClick)
148
148
 
149
- button1.place(x=200,y=60)
149
+ button1.place(x=220,y=60)
150
150
 
151
151
 
152
152
 

1

修正

2020/03/01 04:22

投稿

tomatoto11
tomatoto11

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- テキストにある数当てゲームを作っているのですがどう直せばいいのかわからないです。ご教授願いします!
1
+ テキストにある数当てゲームを作っているのですがどう直せばいいのかわからないです。初心者に加護の方お願いします!
2
2
 
3
3
 
4
4