i have this code:
import webbrowser, random
import os
import os.path
running = 1
DIR="C:/Documents and Settings/Owner/My Documents/georges poopy/main music/"
music = filter(lambda x: x.lower().endswith("mp3"),os.listdir(DIR))
music = list(music)
choice = int(raw_input("Press 1 to play a new song"))
while running == 1:
if choice == 1:
song = random.choice(music)
webbrowser.open(os.path.join(DIR,song))
choice = float(raw_input("Press 1 to play a new song"))
that i got with help from the daniweb comunity but i want to expand it so that instead of only choosing from a folder i can just use DIR="C:/"
and also i would like to know if there is a way to remove the choice = float(raw_input("press 1 to play a new song"))
so that it will simply choose a new song at the end of the old one