A parallel port is a a connection in which eight data lines transmit an entire byte of data at one moment in time.
Answer:
layout,image,font,background color,
Explanation: i just did it on edge
def even_checker(lst):
for x in lst:
if x%2==0:
print(x)
l = [1,2,3,4,5,6,7,8,9,10]
even_checker(l)
I wrote my code in python 3.8. I hope this helps.
B
_______________________________________________________