How can I ask from the user to enter a list in Python3,so as every time the program runs,the input list is the mutable data of the program?
For example, number lists,that user maybe enters are:
L1 = [7,9,16,25]
,L2 = [5,10,15,20]
,L3 = [10,17,19,24]
,`L4 = [16,20,20,23]
Please write the commensurable commands/statements.