python列印變數的標識符、類型和值

來源:互聯網
上載者:User
# Fig. 2.13: fig02_13.py
# Displaying an object's location, type and value.

# prompt the user for input
integer1 = raw_input( "Enter first integer:/n" ) # read a string
print "integer1: ", id( integer1 ), type( integer1 ), integer1
#列印integer1的標識符、類型和值
integer1 = int( integer1 ) # convert the string to an integer
print "integer1: ", id( integer1 ), type( integer1 ), integer1
#列印integer1的標識符、類型和值

integer2 = raw_input( "Enter second integer:/n" ) # read a string
print "integer2: ", id( integer2 ), type( integer2 ), integer2
#列印integer2的標識符、類型和值

integer2 = int( integer2 ) # convert the string to an integer
print "integer2: ", id( integer2 ), type( integer2 ), integer2
#列印integer1的標識符、類型和值

sum = integer1 + integer2 # assignment of sum
print "sum: ", id( sum ), type( sum ), sum
#列印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. #
##########################################################################

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.