python 统计字符串中 某个字符的个数
def getCoutn(self, n):
temp = format(n, "b")
st = str(temp)
return st.count('1')