words=raw_input("please?input?three?words")
print?sorted(words.split())
例如:
a = str(raw_input(u"請輸入用空格分開的單詞:"))
b = a.split()
b.sort()
for i in b:
print i
擴展資料:
Python在執行時,首先會將.py文件中的源代碼編譯成Python的byte code(字節碼),然後再由Python Virtual Machine(Python虛擬機)來執行這些編譯好的byte code。
這種機制的基本思想跟Java,.NET是壹致的。然而,Python Virtual Machine與Java或.NET的Virtual Machine不同的是,Python的Virtual Machine是壹種更高級的Virtual Machine。
百度百科-Python