Posts

How to make a rainbow drawing using python Turtle

Image
 Hello Everyone,  In this blog I will show you how to create a rainbow drawing using python turtle It's very easy  Code: # Python turtle Programming #First if this code show an error just type in terminal (pip install turtle) import turtle colors = [ ' red ' , ' purple ' , ' blue ' , ' green ' , ' orange ' , ' yellow ' ] t = turtle . Pen () turtle . bgcolor ( ' black ' ) for x in range ( 360 ):     t . pencolor ( colors [ x % 6 ])     t . width ( x // 100 + 1 )     t . forward ( x )     t . left ( 59 ) Output:

How to Download an infected file from Google Drive

Image
 Hello Friend, In this blog, I will tell you how to download virus-infected file from google drive. so simply follow my steps, Step 1: Right Click on the file, and then select make the copy. Step 2: After selecting make a copy just download it again and then select continue to download it may be download

How To Make a Hack of Create Many Files Using python

 Hello Friends, I am Ashish, In this blog, I will give you a python code for Create Many Folders Using python copy The below code and paste it where you want.                                        Also, It's my first blog a = 1 #Ye code baccho ke liye haanikaarak hai Ashish Dwara banaya gya hai b = " Ashish4 " while True :     a = a + 1     b = " Ashish4 " + str ( a ) + " .bat "     g =open ( b , " w " )     g . write ( " Hack " )     g . close ()