My question is how to convert a string to a list in Python. When a user enters a string I need to convert it to a list.
user enters => ip1: 1.2 
               ip2: 3.2
After entering it will becomes "['1.2', '3.2']"
 Here is how to convert the above string value to List for looping the values further.
 
   how to get Output => ['1.2','3.2']
          
 
     
     
     
     
    