logo

Crowdly

Browser

Add to Chrome

Questions Bank (1401043 total)

В механізмі розвитку целіакії має значення:

0%
0%
0%
0%
0%
View this question

До ускладнень целіакії не відносяться:

View this question

 

 

View this question

Empareje cada bloque de manejo de excepciones con la descripción de su función

View this question
Compare los siguientes ejemplos:

EJEMPLO 1

try:

x = 5

y = 'x'

print(x + y)

except err as TypeError:

print(err)

EJEMPLO 2

try:

x = 5

y = 'x'

print(x + y)

except TypeError as err:

print(err)

En ambos se produciría una excepción de tipo TypeError cuando se intentase aplicar el operador + a los operandos xy. ¿Cuál de los dos bloques except es correcto?

0%
0%
View this question

Analice la lógica del tratamiento de excepciones en el siguiente trozo de código:

try

:

    # some code to execute

except

Exception1:

    print(

'A', end='')

except Exception2:

    print('B', end='')

except (Exception3, Exception4):

    print('C', end='')

except:

print('D', end='')

print('E')
0%
0%
0%
0%
View this question
View this question

Обчислити інтеграл

0%
0%
0%
0%
View this question

Les

orbitales frontières sont :

0%
0%
0%
0%
0%
0%
View this question

Обчислити інтеграл

0%
0%
0%
0%
View this question