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()
Answer:
11000011
Explanation:
This is because of the rules of bas 2
Answer:
Use font colors that work well with your background.
Select font sizes that are appropriate for your delivery method.
Fonts should be appropriate for your audience.
Limit the number of fonts you use to three or four.
Hope this helps!
Answer:
The first one I'm sorry if I'm wrong