라즈베리파이에 기본 설치되는 tkinter 모듈이 없을 때
ImportError: No module named tkinter
Python2.7
import Tkinter as tk #대문자 T로 바꿔줘야함
Python3
import tkinter as tk
Python2.7 사용 시
SyntaxError: Non-ASCII character '\xea' in file main_tk.py on line 44, but no encoding declared;
see http://python.org/dev/peps/pep-0263/ for details
상단에 주석 작성
# -*- coding: utf-8 -*-