haoshuang3394 发表于 2013-2-5 01:01:53

operator.py源代码分析

<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>
print "Enter two integers, and I will tell you"
print "the relationships they satisfy."
# read first string and convert to integer
number1 = raw_input( "Please enter first integer: " )
#获取输入
number1 = int( number1 )
#将其转化为int型
# read second string and convert to integer
number2 = raw_input( "Please enter second integer: " )
#获取输入
number2 = int( number2 )
#将其转化为int型
if number1 == number2:
print "%d is equal to %d" % ( number1, number2 )
#若相等
if number1 != number2:
print "%d is not equal to %d" % ( number1, number2 )
#若不想等
if number1 < number2:
print "%d is less than %d" % ( number1, number2 )
#若小于
if number1 > number2:
print "%d is greater than %d" % ( number1, number2 )
#若大于
if number1 <= number2:
print "%d is less than or equal to %d" % ( number1, number2 )
#若小于等于
if number1 >= number2:
print "%d is greater than or equal to %d" % ( number1, number2 )
#若大于等于
##########################################################################
# (C) Copyright 2002 by Deitel & Associates, Inc. and Prentice Hall.   #
# All Rights Reserved.                        #
#                                    #
# DISCLAIMER: The authors and publisher of this book have used their   #
# best efforts in preparing the book. These efforts include the   #
# development, research, and testing of the theories and programs    #
# to determine their effectiveness. The authors and publisher make    #
# no warranty of any kind, expressed or implied, with regard to these#
# programs or to the documentation contained in these books. The authors #
# and publisher shall not be liable in any event for incidental or    #
# consequential damages in connection with, or arising out of, the    #
# furnishing, performance, or use of these programs.         #
##########################################################################
页: [1]
查看完整版本: operator.py源代码分析