Ad
Code
Diff
  • def multiply (a,b):
        return a * b
    • def multiply (a,b):
    • a * b
    • return a * b
Code
Diff
  • def hello_world(world):
        return "Hello, World" if world==True else "Goodbye, World"
    • def hello_world(world):
    • return
    • return "Hello, World" if world==True else "Goodbye, World"