๐ Modalitร anteprima. Le prime quindici lezioni di Foundations sono gratuite; questa รจ Pro. Avvia un trial di 7 giorni per sbloccare l'editor, i suggerimenti AI e il resto del programma. Carta richiesta, disdici in qualsiasi momento dalla Dashboard.Avvia trial di 7 giorni โ
โ CorsiโบPython FoundationsโบModulo 8 ยท Python moderno e capstoneโบfunctools.singledispatch โ invio basato sul tipowrite161 / 174
+100 XP
Compito๐ shown in EN
๐ **Question:** Build a \`length(x)\` using \`@singledispatch\` that returns:\n- for str: \`len(x) * 2\`\n- default (any other type): \`-1\`\nPrint \`length("hi")\` and \`length(42)\`.\nExpected:\n4\n-1
๐ Pick the right answer.
๐ก **Hint:** Re-read the theory above if unsure.