0 and 1 are the basic building block for any software. Share and note my experience and encounter with 0 and 1.
#!/usr/bin/python
def add(a, b):
result = a + b
return result
print ( add(2, 2) )
No comments:
Post a Comment