`

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

# Fig. 2.7: fig02_07.py

# Simple addition program.

# prompt the user for input

integer1 = raw_input( "Enter first integer:\n" ) # read a string

integer1 = int( integer1 ) # convert the string to an integer

integer2 = raw_input( "Enter second integer:\n" ) # read a string

integer2 = int( integer2 ) # convert the string to an integer

sum = integer1 + integer2 # assignment of sum

print "Sum is", sum # print sum

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

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

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

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics