You are on page 1of 10

FOLDER LOCK AND TIC TAC

TOE

Created by.: Tejaswi Srivastava, Bhupen Garg,


Manish Kumar Singh.
FOLDER LOCK
 It a folder lock which is created by using jupyter lab in
which there are numbers of patterns, and in our case
there are 1,000 patterns to reach your saved files.

 No 3rd party app is required to create this security lock.

 This is safe and easy to access.


FOLDER LOCK
(HOW TO CREATE)

 Use Jupyter lab from anaconda and create a folder in


which there will be 10 folders naming from 0-9 and then
again each folder will contain 10 other folders and so
on..
THE CODES WHICH ARE USED IN THIS
PROGRAMM IS:
os.mkdir('Personal Study')
os.chdir('Personal Study')
for i in range(10): #layer 1
os.mkdir(str(i))
os.chdir(str(i))
for j in range(10): #layer 2
os.mkdir(str(j)) os.chdir(str(j))
for k in range(10): #layer 3
os.mkdir(str(k))
os.chdir('..')
os.chdir('..')
CODES
TIC TAC TOE
(THE GAME)

 This a game for 2 players which is mind booster and


relaxing as well.
 This game is created using spyder and is very easy to run
and learn coding .
TIC TAC TOE
(CODE USED)
(FURTHER CODES)
(FURTHER CODES)
BIBLIOGRAPHY

 Website- www.google.com
 Website- www.youtube.com
 Anaconda..
 Jupyterlab…
 Spyder…

You might also like