This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame | |
import tkinter as tk | |
from tkinter import ttk | |
# 初始化模块 | |
window = tk.Tk() # 设置窗口 | |
window.title('音乐播放器') # 设置标题 | |
window.geometry('1100x650+100+100') # 设置窗口大小 | |
window.resizable(0, 0) # 禁止改变窗口大小 | |
songs_flag = 0 # 初始化歌曲编号 |