返回介绍

01. Python 工具

02. Python 基础

03. Numpy

04. Scipy

05. Python 进阶

06. Matplotlib

07. 使用其他语言进行扩展

08. 面向对象编程

09. Theano 基础

10. 有趣的第三方模块

11. 有用的工具

12. Pandas

可变和不可变类型

发布于 2022-09-03 20:46:12 字数 4311 浏览 0 评论 0 收藏 0

列表是可变的(Mutable)

In [1]:

a = [1,2,3,4]
a

Out[1]:

[1, 2, 3, 4]

通过索引改变:

In [2]:

a[0] = 100
a

Out[2]:

[100, 2, 3, 4]

通过方法改变:

In [3]:

a.insert(3, 200)
a

Out[3]:

[100, 2, 3, 200, 4]

In [4]:

a.sort()
a

Out[4]:

[2, 3, 4, 100, 200]

字符串是不可变的(Immutable)

In [5]:

s = "hello world"
s

Out[5]:

'hello world'

通过索引改变会报错:

In [6]:

s[0] = 'z'
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-6-83b06971f05e> in <module>()
----> 1  s[0] = 'z'

TypeError: 'str' object does not support item assignment

字符串方法只是返回一个新字符串,并不改变原来的值:

In [7]:

print s.replace('world', 'Mars')
print s
hello Mars
hello world

如果想改变字符串的值,可以用重新赋值的方法:

In [8]:

s = "hello world"
s = s.replace('world', 'Mars')
print s
hello Mars

或者用 bytearray 代替字符串:

In [9]:

s = bytearray('abcde')
s[1:3] = '12'
s

Out[9]:

bytearray(b'a12de')

数据类型分类:

可变数据类型不可变数据类型
list, dictionary, set, numpy array, user defined objectsinteger, float, long, complex, string, tuple, frozenset

字符串不可变的原因

其一,列表可以通过以下的方法改变,而字符串不支持这样的变化。

In [10]:

a = [1, 2, 3, 4]
b = a

此时, ab 指向同一块区域,改变 b 的值, a 也会同时改变:

In [11]:

b[0] = 100
a

Out[11]:

[100, 2, 3, 4]

其二,是字符串与整数浮点数一样被认为是基本类型,而基本类型在Python中是不可变的。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文