Multiply

This code does not execute properly. Try to figure out why.

Solutions

🐍 Python

def multiply(a, b):
  if(a != None and b != None):
      return a * b

💲 Powershell

function Multiply($a, $b)
{
  return (( $a * $b ))
}

Last updated