Ai
1 Star 1 Fork 1

luohanye/python-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
list_tuple.py 441 Bytes
一键复制 编辑 原始数据 按行查看 历史
luohanye 提交于 2024-04-14 23:12 +08:00 . add
# list是一个可变的有序表,所以,可以往list中追加元素到末尾
students=['zs','lisi','wanger']
print(len(students))
students.append('sanmao')
print(students)
# tuple和list非常类似,但是tuple一旦初始化就不能修改,比如同样是列出同学的名字
# 因为tuple不可变,所以代码更安全。如果可能,能用tuple代替list就尽量用tuple
names=('n01','n02')
names[0]='aaa'
print(names)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/indexman/python-core.git
git@gitee.com:indexman/python-core.git
indexman
python-core
python-core
master

搜索帮助