标签:
2016-09-20
回顾 |
回顾:字符串、列表、字典的修改关于内存的情况
一、字符串
str1 = ‘luotianshuai‘ str2 = str1 print id(str1) print id(str2) print ‘===========================‘ str1 = ‘shuaige‘ print id(str1) print id(str2) #输出结果: ‘‘‘ 38807904 38807904 =========================== 39795488 38807904 ‘‘‘
标签:
原文地址:http://www.cnblogs.com/robinunix/p/5888332.html