how to take multiple inputs in a single line in python for given range code example
Example: how to take multiple inputs in one propmt
const inputs = prompt("Enter your inputs separated by a tilde ~").split("~");
console.log(inputs);
const inputs = prompt("Enter your inputs separated by a tilde ~").split("~");
console.log(inputs);