[파이썬 저울 연결] 13. GUI 만들기 #6. exe 까만창 안뜨게, 파일 하나로
지난시간까지 만든 코드는 아래와 같다. import tkinter as tk from numpy import product #윈도우 생성 root=tk.Tk() #전체 이름 root.title('무게를 이용한 검수') #창 크기 +붙은 부분은 좌상단 떨어진 위치 root.geometry("600x400+100+100") #창 크기 조절 가능 여부 (디폴트 True) root.resizable(True,True) lab00=tk.Label(root,text="현재 무게", font=('Arial 32 bold'),bg='black',fg="red",width=8,height=1) lab00.grid(row=0,column=0,padx=10) ####################################..
2022. 1. 13.