We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x = range(max(h_count_dict.keys())+1)
y = [0 for _ in x]
y[h] = h_count_dict[h]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
x = range(max(h_count_dict.keys())+1)
会报错,因为range里面只能是整数;y = [0 for _ in x]
让y初始化为一个列表,51行y[h] = h_count_dict[h]
赋值操作,因为h是小数,所以y[h]写法是错误的,会报错;The text was updated successfully, but these errors were encountered: