Answer:
I think you can get mic feedback from all of the microphones
Explanation:
Let me know if this is the answer you are looking for
Moderno = mordern, if It does than yes!
Answer:
1:2
Explanation:
Width : Length
3434 : 7878
= 1 : 2.294
= 1 : 2 (to the nearest mm)
def is_list_even(my_list):
for i in my_list:
if(i%2 != 0):
return False
return True
def is_list_odd(my_list):
for i in my_list:
if(i%2 == 0):
return False
return True
def main():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
if(is_list_even(lst)):
print('all even')
elif(is_list_odd(lst)):
print('all odd')
else:
print('not even or odd')
if __name__ == '__main__':
main()