The Disassembler

Report a typo

Write a function that can determine the type of a request and send a GET or a POST, respectively.

Don't forget to allow both GET and POST requests!
Write a program in Python 3
from flask import Flask, request

app = Flask('main')

@app.route('/')
def deassemle_request():
#code here
___

Create a free account to access the full topic