in_count = int(input())
name_list = []
for i in range(in_count):
name_list.append(input())
print(f'List has {in_count} elements:')
''' Your code goes here '''
this is the code and it wants me to do this ive tried a buch but none is working could i get some help pls
Integer in_count is read from input representing the number of values to be read next. The remaining values are read from input into name_list. For each value in name_list, output the value followed by ' verified' on the same line.