diff --git a/stockpredictor/analysis/Analyzer.py b/stockpredictor/analysis/Analyzer.py index 34d5c0b..ee8ddbb 100644 --- a/stockpredictor/analysis/Analyzer.py +++ b/stockpredictor/analysis/Analyzer.py @@ -561,7 +561,7 @@ class Analyzer: print() for check_index in range(20): - print ("%d일전: (+) %d, (-) %d, (%4.2f)" % (check_index, inde_check[check_index][0], inde_check[check_index][1], inde_check[check_index][0]*100/(inde_check[check_index][0]+inde_check[check_index][1]))) + print ("%d일전 + %d - %d %4.2f" % (check_index, inde_check[check_index][0], inde_check[check_index][1], inde_check[check_index][0]*100/(inde_check[check_index][0]+inde_check[check_index][1]))) print() cursor.close() @@ -642,6 +642,6 @@ if __name__ == "__main__": #outFileName = PROJECT_HOME + '/resources/analysis/'+day+'.json' #analyzer.analyzeToFile(outFileName) - print("time : %6.2f 초", (time.time() - start)) + print("time : %6.2f 초" % (time.time() - start)) print("done...")