True.
It doesn't measure unique users, so you can just hit refresh and the counter keeps going up...
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:
D.Repetition
Explanation:
REPETITION can be seen a the way of repeating a word over and over again or the way of doing something over and over again.
Example a person who is eager to learn or pronounce the word "Success" may continue to repeat the word over and over again as Success, Success, Success untill that person can either write or pronounce the word.
Therefore the strategy in which a person or an individual learn something by repeating it over and over is called REPETITION.