สอนภาษา Python เรียงลำดับคำ หรือข้อความ โดยรับค่าจากผู้ใช้งานด้วยคำสั่ง input และนำมาแยกคำด้วย split จากนั้นเรียงลำดับคำเหล่านั้นด้วย sort และใช้ for loop วนการเรียงลำดับคำ หรือข้อความออกมา สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python เรียงลำดับคำ หรือข้อความ
try:
s = input('Please input word : ')
except:
s = ''
if s != '' :
w = s.split()
w.sort()
for x in range( len(w) ):
print( w[x] )
ผลลัพธ์
Please input word : hello my name is devdit
devdit
hello
is
my
name