私はちょうど私が文字列からsplit( '')[スペースで分割]予想外の結果を混乱させる。 私はこの問題をどのように克服できるのか教えてください。ここでのように私のコードは、「5」文字のコード少ないし、「1」あなたは文字列値と文字のコードを持って変数VarのリストはPythonの文字列から生成された
str=raw_input() #suppose i give "50 100 50" as string
var=str.split(' ') #it splits into [50,100,50]
var.sort() #now sorting command
print "Sorted var is: %r" %var #it gives [100,50,50] instead of [50,50,100]
[Numeric Sort in Python]の重複の可能性があります(http://stackoverflow.com/questions/3426108/numeric-sort-in-python) –