📅  最后修改于: 2022-03-11 14:46:08.886000             🧑  作者: Mango
#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)