HOME/Articles/

simple python-example-5 (snippet)

Article Outline

Python example 'python-example-5'

python-example-5

Python example: python-example-5

#!/usr/bin/python
# -*- coding: UTF-8 -*-

l = []
for i in range(3):
    x = int(raw_input('integer:\n'))
    l.append(x)
l.sort()
print(l)