Python 练习实例48

Python 100例 Python 100例

题目:数字比较。

程序分析:

程序源代码:

#!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': i = 10 j = 20 if i > j: print '%d 大于 %d' % (i,j) elif i == j: print '%d 等于 %d' % (i,j) elif i < j: print '%d 小于 %d' % (i,j) else: print '未知'

以上实例输出结果为:

10 小于 20

Python 100例 Python 100例