import tkinter as tk
import tkinter.scrolledtext as tkst

root=tk.Tk()
root.title("ScrolledText")
frame=tk.Frame(root,bg='brown')
frame.pack(fill='both',expand='yes')

edit_space=tkst.ScrolledText(
    master=frame,
    wrap='word', # wrap text at full words only
    width=25,    # characters
    height=10,   # text lines
    bg='beige',   # background color of edit area
)
# the padx/pady space will form a frame
edit_space.pack(fill='both',expand=True,padx=8,pady=8)

mytext='''\
Man who drive like hell, bound to get there.

Man who run in front of tire, get tired.

Man who run behind car, get exhausted.

The Internet: where men are men, women are men, and children are FBI agents.
'''

edit_space.insert('insert',mytext)

root.mainloop()