Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
def moltiplica(a, b=2): return a * b
print(moltiplica(5, 3))
print(moltiplica(5))
print(moltiplica())
print(moltiplica(a=2, 5))
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!