我是python的初学者,我正在尝试解决一个问题,我不了解如何定义测试用例以及如何在输入字符串中找到最常用的名称。请帮我解决问题。
这是我的问题: 如果多个用户使用相同数量的名称,则以字母顺序打印所有用户。
here my input :
The first line of input should be the number of test cases
Remaining lines of input should contain each test case input.
这是我的输出:
Input
1
4
james_id_1
jack_id_2
james_id_3
james_id_4
output:
james 3
Sample 2:
Input
1
3
jacob_id_1
david_id_2
david_id_3
output:
david 2
这是我的代码:
mylist=[]
n=int(input("Enter size of the list:\n"))
for i in range(0,n):
temp=input("Enter number to append:\n")
mylist.append(temp)
print(len(mylist))