我有这个简单的调查代码行,我想添加到Tkinter GUI的一页上。我希望它像Mac上的Terminal一样最小。每个问题都将您带到下一行,并最终以一种结束线结束。如果问题持续很长时间,我将需要有一个滚动条。我不明白如何在不破坏代码的情况下将其复制到tkinter中。我所有的输入都在pycharm渲染窗口中发生,但在遇到问题打开tk窗口后不在tkinter中发生。希望在Tkinter窗口中发生的所有问题都可以开始
我试图在没有运气的情况下将此代码添加到tkinter中。
import pandas as pd
import pyodbc
fowr_sqlFile = open(r'query1.sql')
int_sqlFile = open(r'query2.sql')
conn = pyodbc.connect('Driver={SQL Server};'
'Server=servername;'
'Database=dbName;'
'Trusted_Connection=yes;')
forw_rates = pd.read_sql(fowr_sqlFile.read(), conn)
int_rates = pd.read_sql(int_sqlFile.read(), conn)
print(len(forw_rates))
print(len(int_rates))
fowr_sqlFile.close
int_sqlFile.close