I have some code which takes a series of numbers separated by commas using input(). While that works fine I would like the user to be able to put in these numbers but also include a range if they wanted to.
input = 1,2,3 # works fine
input = 1,2,3,4-9,15 # no idea if this can work
I have no idea if this is best pursued with a regex as they totally mystify me tbh.
Code
def convert_to_int(user_input_str):
input_list_str = list(user_input_str.split(","))
number_list = []
for n in input_list_str:
number_list.append(int(n))
return number_list
if __name__ == "__main__":
#manual_testing()
print("enter list, each integer separated by a comma")
user_input_str = input()
print("From user : ", convert_to_int(user_input_str))
Input
1,2,3
Returns
From user : [1, 2, 3]
Desired functionality
input
1,2,3,9-14,21
Desired output
From user : [1, 2, 3, 9, 10, 11, 12, 13, 14, 21]