Я хочу отправить в python переменную node.js, изменить ее с помощью python и повторно отправить ее в node.js, это пример моих кодов: Python
def change_input(variable):
variable*=5
#now send variable to node.js
Теперь код js:
var variable=prompt("enter the variable");
#after the code was sended to thd python code, modified and resend:
document.write(variable)
Как передать переменные между python и javascript?