Answer:
Simple Answer: There Not Really
Explanation:
Computers are just a bunch of different parts that work together to make a system function. All you need is a case a fan and a CPU, oh and some RAM. Obviously if you want it fully functional, you can look online but yes it's quite simple really!
Answer: trojan horse virus
Explanation:A trojan horse is a non-replicating program that looks legitimate, but it is actually used to perform malicious and illicit activities when launched. Attackers use trojan horses to steal a user's
personal information like password information, or they may simply use it to destroy programs or data on the hard disk.
Answer:
You can't call a function unless you've already defined it. Move the def createDirs(): block up to the top of your file, below the imports.
Explanation:
Some languages allow you to use functions before defining them. For example, javascript calls this "hoisting". But Python is not one of those languages.