076923 / 076923.github.io

Daehee Yun Tech blog
MIT License
22 stars 1 forks source link

posts/Python-tkinter-12/ #3

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Python tkinter 강좌 : 제 12강 - 위젯 배치 : place - YUN DAE HEE

place(절대 위치 배치)

https://076923.github.io/posts/Python-tkinter-12/

ghost commented 2 years ago

TypeError: place_configure() takes from 1 to 2 positional arguments but 3 were given 라는 에러가 납니다. .place(0, 500) 사용했고요 창 크기는 1000*500입니다

076923 commented 2 years ago

@TheMakers-1 keyword argument를 명시해주셔야 합니다. .place(0, 500)가 아닌, .place(x=0, y=500)로 입력해주셔야 합니다.