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

61 lines
813 B
Markdown
Raw Normal View History

---
id: 5e7b9f060b6c005b0e76f059
title: Ulteriori strutture condizionali
challengeType: 11
videoId: HdL82tAZR20
bilibiliIds:
aid: 631930118
bvid: BV1Nb4y1r7z2
cid: 376337449
dashedName: more-conditional-structures
---
# --description--
Altre risorse:
\- <a href="https://www.youtube.com/watch?v=crLerB4ZxMI" target="_blank" rel="noopener noreferrer nofollow">Esercizio 1</a>
\- <a href="https://www.youtube.com/watch?v=KJN3-7HH6yk" target="_blank" rel="noopener noreferrer nofollow">Esercizio 2</a>
# --question--
## --text--
Dato il seguente codice:
```python
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