望舒朝晖 发表于 2020-9-21 08:47:46

(‘1,2’)和【‘1,2’】有什么不一样?

1
locations=('jiuzaigou,chongqing,suzhou,newYork,zhaoyingcheng')
locations.sort()
print(locations)

AttributeError                            Traceback (most recent call last)
<ipython-input-4-77d28d7b3ac1> in <module>
      1 locations=('jiuzaigou,chongqing,suzhou,newYork,zhaoyingcheng')
----> 2 locations.sort()
      3 print(locations)

AttributeError: 'str' object has no attribute 'sort'

2
locations=['jiuzaigou','chongqing','suzhou','newYork','zhaoyingcheng']
locations.sort()
print(locations)

['chongqing', 'jiuzaigou', 'newYork', 'suzhou', 'zhaoyingcheng']



为何上下不同?举个例子:
(‘1,2’)和【‘1,2’】有什么不一样?
求解答。

CH10 发表于 2020-9-21 09:06:28

Python 的元组与列表类似,不同之处在于元组的元素不能修改。
元组没有.sort()的内置函数,列表有{:10_305:}

jtxs0000 发表于 2020-9-21 09:17:46

第一个是字符串吗,只有前后才有引号,所以才会提示'str' object has no attribute 'sort'

sunrise085 发表于 2020-9-21 09:26:22

本帖最后由 sunrise085 于 2020-9-21 09:27 编辑

你写的第一个只有两端有引号,locations=('jiuzaigou,chongqing,suzhou,newYork,zhaoyingcheng')
中间没有任何引号,这是个字符串,字符串不能排序
你写的第二个,locations=['jiuzaigou','chongqing','suzhou','newYork','zhaoyingcheng']每个逗号之间都有引号,是一个多元素列表,列表可排序
所以根本不是小括号和中括号的问题

望舒朝晖 发表于 2020-9-21 14:45:11

好的,谢谢!
页: [1]
查看完整版本: (‘1,2’)和【‘1,2’】有什么不一样?