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

Was this helpful?