Represent the names of 12 months as an array of strings.
Answers
Answered by
1
Explanation:
l = []
for i in range(12):
x = input("enter months")
l.append(x)
print(l)
Similar questions