OzoneAsai commited on
Commit
c30a242
1 Parent(s): 326cc53

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,8 +5,8 @@ app = Flask(__name__)
5
  app.secret_key = "your_secret_key" # セッションを使用するための秘密鍵を設定します
6
 
7
  def generate_question():
8
- num1 = random.randint(100, 999)
9
- num2 = random.randint(100, 999)
10
  session['answer'] = num1 + num2
11
  return f"{num1} + {num2}"
12
 
 
5
  app.secret_key = "your_secret_key" # セッションを使用するための秘密鍵を設定します
6
 
7
  def generate_question():
8
+ num1 = random.randint(100, 9999)
9
+ num2 = random.randint(100, 9999)
10
  session['answer'] = num1 + num2
11
  return f"{num1} + {num2}"
12