#創建自己的視窗
#Python自帶的可編輯的GUI界面,是一個影像視窗
#Tkinter是使用 python 進行視窗視窗設計的模塊
#簡單的構造,多平臺,多系統的兼容性, 能讓它成為讓你快速入門定制視窗檔案的好助手
#它在 python 視窗視窗模塊中是一款簡單型的,所以用來入門,熟悉視窗視窗的使用,非常有必要
#參考網址
#https://blog.csdn.net/mingshao104/article/details/79591965
#https://blog.csdn.net/mingshao104/article/details/79591965
# https://blog.csdn.net/sinat_41104353/article/details/79313424
# https://blog.csdn.net/Bugest/article/details/81557112
import re import tkinter as tk #tkinter 視窗 window=tk.Tk() window.title('my window')#視窗名字 window.geometry('300x100')#視窗大小 window.mainloop()#讓視窗活起來
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/161026.html
標籤:Python
上一篇:Python面向物件分析存放家具
下一篇:購物車程式-練習
