Every example of a list that I&#39;ve seen involves working with, sorting, etc pre-populated list.&nbsp; How can I create a list where the user inputs a string of numbers and then sorts it?<br><br>I&#39;ve tried:<br><br>print &quot;Input list separated by commas&quot;
<br>lst=[raw_input()]<br>print lst<br>print len(lst)<br>lst.sort()<br>print lst<br><br>It appears to accept the input and will print the list but the length of the list is wrong and it doesn&#39;t sort, leading me to believe that it is seeing the input as 1 large input instead of separate numbers.
<br>