Python:计算最活跃和最不活跃的客户
问题描述
我有一个关于如何找到最活跃客户和最不活跃客户的问题。
我们被赋予了一组不同的名字。例如"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
谢谢!
解决方案
我猜这更多的是基础数学、平均值、中位数、模式等问题。
您可以将所有名称放入一个列表中,并计算每个列表中的名称,然后将它们写回文本框。
相关文章