python创建列表并给列表赋初始值演示代码

2022-03-11 00:00:00 列表 演示 并给

python创建列表并给列表赋初始值演示代码,python的列表不同余C++的数组,python的列表元素的值是可以有不同数据类型的。

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/20
功能描述:python创建列表并给列表赋初始值演示代码
"""
aList = [123, 'pidancode.com', 4.56, ['inner', 'list'], 7-9j]
anotherList = [None, 'something to see here']
print(aList)
print(anotherList)
aListThatStartedEmpty = []
print(aListThatStartedEmpty)
print(list('foo'))

输出结果如下:
[123, 'pidancode.com', 4.56, ['inner', 'list'], (7-9j)]
[None, 'something to see here']
[]
['f', 'o', 'o']

以上代码在python3.9环境测试通过

相关文章