#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Jun 29 03:08:28 2020 @author: zahrashah """ import networkx as nx import EoN import matplotlib.pyplot as plt G = nx.grid_2d_graph(300,300) #can change where the infection starts by changing the this list initial_infections = [(x,y) for (x,y) in G if 35