How can we set the scrollbars in turtle in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can we set the scrollbars in turtle in python

I am new to python and i want to know how to set the scrollbars in python turtle

2nd Oct 2017, 5:40 AM
Gurugunti Akash
Gurugunti Akash - avatar
2 Answers
+ 1
hey turtle draws things really slow. use tkinter
6th Nov 2017, 12:36 AM
Hyrum Harris
Hyrum Harris - avatar
0
from tkinter import* root = Tk() scrollbar = Scrollbar(root) scrollbar.pack(side=RIGHT, fill = Y) #this is a scroll bar in tkinter
6th Nov 2017, 12:40 AM
Hyrum Harris
Hyrum Harris - avatar