Kevin Tiller

Generation

generate functionSun, 23 Apr 2023

Write a function that adds two number strings (i.e., "one" + "three" = "four")

def add(a, b): return int(a) + int(b) add("4", "5")

Want to kickstart your project?Use the new AI Studio to create your code