강의

멘토링

로드맵

Inflearn Community Q&A

jason's profile image
jason

asked

Free Python Course (Usage 2) - GUI Programming (4 hours)

Basic Frame

정말 신기한게 root = Tk() 복사한것과 내가 적은것과 결과가 달라요

Written on

·

290

0

root = TK() 라고 키보드에서 치면 

NameError: name 'TK' is not defined

라고 나오는데 구글에서 

root = Tk() 를 긁어오면 동작을 합니다
pythonGUI

Quiz

50% of people got it wrong. Give it a try!

Tkinter 창의 크기와 위치를 동시에 설정하는 함수는 무엇일까요?

root.title()

root.resizable()

root.geometry()

root.pack()

Answer 2

0

대소문자 구별 해주세요. 

0

혹시 k의 대소문자의 차이가 아닐까요???

일반적으로 같은 문자인데 다른 출력이 나오는 경우는 없습니다.

jason's profile image
jason

asked

Ask a question