import numpy as np class NeuralNetwork(): def __init__(self): np.random.seed(1) self.synapticweights = 2 * np.random.random((3,1)) - 1 def s