python list


Python有6个序列的内置类型,但最常见的是列表和元组。

参考:https://www.runoob.com/python/python-lists.html

实例:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
list = []          ## 空列表
list.append('Google')   ## 使用 append() 添加元素
list.append('Runoob')
print list

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/289358.html

(0)
上一篇 2022年9月14日
下一篇 2022年9月14日

相关推荐

发表回复

登录后才能评论