i have base code that works below. cannot figure out how to move down arrow from one right side to left. anyideas?
thanks in advance

import tkinter as tk
from tkinter import ttk

window = tk.Tk()
window.geometry('400x200')

comboExample = ttk.Combobox(
window,
values=[
"Jan",
"Feb",
"Mar",
"Apr"
]
)

comboExample.grid(column=0, row=0)
comboExample.current(0)

window.mainloop()