# -*- coding: utf-8 -*- import tkinter as tk root = tk.Tk() root.title("tk17.py") root.geometry("200x120") ##################################### btn1 = tk.Button(root, text = "Button", bg = 'pink', fg = 'blue', relief = "raised") btn2 = tk.Button(root, text = "Button", bg = 'brown', fg = 'gold', relief = "sunken") btn1.place(height = 50, width=50, x = 10, y = 10) btn2.place(height = 50, width=50, x = 120, y = 50) ##################################### root.mainloop()