# Print a list of names by using file system. Store the expected outout in a file called names.txt
Kaelin
Faz
CJ
Rachel
Scott
Mo
f=open("names.txt")i=0whileTrue:name=f.readline()# check to see if we reached the end of the lineifnotname:break# only print the name if i is even numberifi%2==0:print(name,end="")i=i+1