def cross(mother, father):
mother_head = mother[:int(len(mother) * 0.5)].copy()
mother_tail = mother[int(len(mother) * 0.5):].copy()
father_tail = father[int(len(father) * 0.5):].copy()
.copy methodu çalışmıyor nasıl düzeltebilirim ?
def cross(mother, father):
mother_head = mother[:int(len(mother) * 0.5)].copy()
mother_tail = mother[int(len(mother) * 0.5):].copy()
father_tail = father[int(len(father) * 0.5):].copy()
.copy methodu çalışmıyor nasıl düzeltebilirim ?
python sürümün kaç ?
mother ve father olarak ne gönderiyorsun ?
aldığın hata ne ?