1 2 3 4 5 6 7 8 9 10 11 12 13 | import turtle, winsound songs = ['Komorebi.wav', 'New_Land.wav', 'St_Francis.wav'] flags = winsound.SND_FILENAME| winsound.SND_ASYNC | winsound.SND_NODEFAULT n = 0 n_songs = len(songs) while True : print("==============> Ãâ·Â °î:", songs[n]) winsound.PlaySound(songs[n], flags) input("´ÙÀ½ °îÀ» µéÀ¸·Á¸é Enter Å°¸¦ ÀÔ·Â") n = (n+1) % n_songs | cs |