📜  如何在 python 代码示例中创建数组

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

代码示例6
#I will make an array and the contents will be called "Hello", "Nice", "Cool"

#Array
#By the way, you can make whatever variable name you want. 
#I will also print the array

#Making the Array
variable = ["Hello", "Nice", "Cool"]

#printing the array
print(variable)