Computer Science, asked by aswathy2003, 5 months ago

Represent the names of 12 months as an array of strings.​

Answers

Answered by RuwaisnZaid
1

Explanation:

l = []

for i in range(12):

x = input("enter months")

l.append(x)

print(l)

Similar questions