Answer and Explanation
A for loop is a control flow of statement for specifying iteration, which allows a code to be executed repeatedly. For-loops are typically used when the number of iterations is known before entering the loop.
months = ['January', 'July', 'Nov']
for i in months:
i = i.lower()
if (i.lower()).startswith('j'):
print(i)