NodeJS supports doing this synchronously.
Use this:
const exec = require("child_process").execSync;
var result = exec("python celulas.py");
// convert and show the output.
console.log(result.toString("utf8");
Remember to convert the buffer into a string. Otherwise you'll just be left with hex code.