freeCodeCamp/curriculum/challenges/italian/07-scientific-computing-wit.../python-for-everybody/more-conditional-structures.md

621 B

id title challengeType videoId dashedName
5e7b9f060b6c005b0e76f059 Ulteriori strutture condizionali 11 HdL82tAZR20 more-conditional-structures

--description--

Altre risorse:

- Esercizio 1

- Esercizio 2

--question--

--text--

Dato il seguente codice:

temp = "5 degrees"
cel = 0
fahr = float(temp)
cel = (fahr - 32.0) * 5.0 / 9.0
print(cel)

Quali righe dovrebbero essere racchiuse nel blocco try?

--answers--

1


3


3,4


4


Nessuna

--video-solution--

3