-
Notifications
You must be signed in to change notification settings - Fork 722
New issue
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
汇报一个小小的BUG, #2
Comments
|
带*的都不要了 43 + if "*" in row["code_name"]:
44 + continue |
{row["code_name"]}.csv 改为{row["code_name"].replace("*","x")}.csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
53行,写入文件,
df_code.to_csv(f'{self.output_dir}/{row["code"]}.{row["code_name"]}.csv'
当股票代码为*ST开头的时候, 会报错,去掉{row["code_name"]}之后正常。
The text was updated successfully, but these errors were encountered: