本文实例讲述了python创建列表并给列表赋初始值的方法。分享给大家供大家参考。具体如下:
alist = [123, ‘abc’, 4.56, [‘inner’, ‘list’], 7-9j]
anotherlist = [none, ‘something to see here’]
print alist
print anotherlist
alistthatstartedempty = []
print alistthatstartedempty
print list(‘foo’)
运行结果如下:
[123, ‘abc’, 4.56, [‘inner’, ‘list’], (7-9j)]
[none, ‘something to see here’]
[]
[‘f’, ‘o’, ‘o’]
希望本文所述对大家的python程序设计有所帮助。