How to place the cursor on the left side of the text box tkinter? How to place the cursor on the left side of the text box tkinter? tkinter tkinter

How to place the cursor on the left side of the text box tkinter?


You can use the justify option to have the text right-justified:

self.user_entry = Entry(self, justify="right")   self.pass_entry = Entry(self, justify="right")

I'm not sure if that's exactly what you're looking for, but it's the only option available. If you want characters to be added to the left, it can be done with custom bindings.