operator.py源代码分析

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.                     #

##########################################################################

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值