---
id: 5e7b9f060b6c005b0e76f059
title: Weitere Bedingungsstrukturen
challengeType: 11
videoId: HdL82tAZR20
bilibiliIds:
aid: 631930118
bvid: BV1Nb4y1r7z2
cid: 376337449
dashedName: more-conditional-structures
---
# --description--
Weitere Ressourcen:
\- Aufgabe 1
\- Aufgabe 2
# --question--
## --text--
Gegeben ist der folgende Code:
```python
temp = "5 degrees"
cel = 0
fahr = float(temp)
cel = (fahr - 32.0) * 5.0 / 9.0
print(cel)
```
Welche Zeile(n) soll(en) von einem `try`-Block umgeben sein?
## --answers--
1
---
3
---
3,4
---
4
---
Keine
## --video-solution--
3