Ibuprofeno.py馃拪| #107: Explica este c贸digo Python

duxtech

Cristian Fernando

Posted on May 15, 2024

Ibuprofeno.py馃拪| #107: Explica este c贸digo Python

Explica este c贸digo Python

Dificultad: Intermedio

MLB_team = {
    'Colorado' : 'Rockies',
    'Boston'   : 'Red Sox',
    'Minnesota': 'Twins',
    'Milwaukee': 'Brewers',
    'Seattle'  : 'Mariners'
}

print(MLB_team[0:2])
Enter fullscreen mode Exit fullscreen mode

馃憠 A. ('Rockies', 'Red Sox')
馃憠 B. ['Rockies', 'Red Sox']
馃憠 C. {'Rockies', 'Red Sox'}
馃憠 D. TypeError


Respuesta:

馃憠 D. TypeError

Los diccionarios no tienen una sintaxis de slice, no se pude cortar el diccionario como lista. Intentar hacer esto produce un TypeError.

馃挅 馃挭 馃檯 馃毄
duxtech
Cristian Fernando

Posted on May 15, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related