Answer:
alphabets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
newList = []
N = 3
for i in range(N):
newList.append(alphabets[i] * 3)
print(newList)
Step-by-step explanation:
- Initialize the alphabets.
- Use a for loop to append three alphabets to new list.
- Finally print the new list.