Note
Go to the end to download the full example code.
Basic example¶
This example demonstrates using the cocofeats.add()
function.
2 + 3 = 5
from cocofeats import add
result = add(2, 3)
print(f"2 + 3 = {result}")
Total running time of the script: (0 minutes 0.003 seconds)