A technical article
by Jo, on 2015 April 9th
This Python code is really good:
def good():
a = 1
b = 2
c = a + b
return None
This one is even better:
def better():
a = 128
b = 256
c = a * b
return None
This Python code is really good:
def good():
a = 1
b = 2
c = a + b
return None
This one is even better:
def better():
a = 128
b = 256
c = a * b
return None