window = Tk()
text = Text()
window.title("Добро пожаловать в приложение PythonRu")
window.geometry('400x250')
text = Text(width=25, height=5, bg="darkgreen",
fg='white', wrap=WORD)
text.pack()
scroll = Scrollbar(command=seasonvar_new)
scroll.pack()
text.config(yscrollcommand=scroll.set)
window.mainloop()