continents = [
'Asia',
'South America',
'North America',
'Africa',
'Europe',
'Antarctica',
'Australia',
]
for continent in continents:
print(continent)
if continent[0] == 'A':
print(continent)
This is my code that I have used. Could someone see if there is a way to print out the continents that only begin with the letter "A"?