Ask coding questions
The title says it all! So how do I?
const { exec } = require("child_process"); exec("python file.py", (error, stdout, stderr) => { if (error) { console.log(`error: ${error.message}`); return; } if (stderr) { console.log(`stderr: ${stderr}`); return; } console.log(`stdout: ${stdout}`); });
Try that
https://brython.info/
not possible in reality.
Try that