getMin, getMax = int(input("Enter a range (min,max): "));
Above is the code I am trying to implement but it gives me an error saying...
int() argument must be a string or a number, not 'tuple'
Basically, I have tried entering .split(,) after the input statement but I get the same error. When a user enters 1,10 as an input I want getMin = 1 and getMax = 10