📜  可以在 python 代码示例中列出保存不同的数据类型

📅  最后修改于: 2022-03-11 14:46:10.742000             🧑  作者: Mango

代码示例1
#lists can hold diffrent types of datatypes at a single time
list_example = ["list",4,True,7.0]
print(list_example)