FILES_TO_DELETE = [
    'bluetooth_chat.py',
    'say_chat.py',
    'take_picture.py',
]

import os

if __name__ == "__main__":
    for f in FILES_TO_DELETE:
        try:
            os.remove('scripts/' + f)
            print 'removing: ' + f
        except:
            pass
