✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quale sarà l'output del seguente codice?
def test(a=5, b=10): if a > b: return a - b elif a == b: return "Uguali" else: return b - aprint(test(5))