我有一个关于如何找到最活跃客户和最不活跃客户的问题。
我们获得了一组不同的名字。例如"sam, sam, luke, luke, luke"
我们被要求使用python(spyder)找到最常用的名称和最不频繁的名称。这些结果需要在wxFormBuilder
我不确定应该做什么。
以下是我目前寻找最活跃客户的方法:
def mostactive(self,parent):
for name in range (self.m_listBox1.GetCount()): <--- the name of the box is m_listBox1
mostactivecustomer=str(self.m_listBox1.GetString(name))
self.m_textCtrl2.Value(mostactivecustomer) <---- the result box is called m_textCtrl2
谢谢!
答案 0 :(得分:0)
我猜这更像是基本数学,均值,中位数,模式等问题。
您可以将所有名称放入列表中并计算每个名称中的名称,然后将其写回文本框。