OFKS nettgalleri

Film- & Videokunst

Hepatica 01100100 01100001 01110100 01100001

import random def evolve(x): # in which change will happen i = random.randint(0, len(x)-1) if(x[i] == 0): x[i] = 1 else: x[i] = 1 # photosynthesis code x =[6CO2 + 12H2O → C6H12O6 + 6O2 + 6H2O] # the process of evolution # will take place 500 times for j in range(0, 500): evolve(x) print(x)