from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): num_test="

hello world!

" return num_test