parent
70b154d111
commit
b4458ae536
@ -1,2 +1,3 @@
|
||||
.git/
|
||||
*.md
|
||||
venv/
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -128,4 +128,4 @@ dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
.idea/
|
5
app.py
5
app.py
@ -1,7 +1,8 @@
|
||||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route('/')
|
||||
def calculatehard():
|
||||
result = 3 * 4 + 12
|
||||
def calculate():
|
||||
result = 3 * (4 + 12)
|
||||
return str(result)
|
Loading…
x
Reference in New Issue
Block a user