You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in our docs.
# Combobox = 리스트 중 하나 선택 가능, 값 입력 가능한 위젯 months = [str(i) + "월" for i in range(1, 13)] month_combobox = ttk.Combobox(root, height = 5, values = months) # height(보여지는 갯수) / values(보여질 값) month ...