how to take multiple types of values in input python 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);