--- id: 5e7b9f060b6c005b0e76f059 title: More Conditional Structures challengeType: 11 isRequired: true videoId: HdL82tAZR20 --- ## Description
More resources: - Exercise 1 - Exercise 2
## Tests
```yml question: text: 'Given the following code:
1 |temp = "5 degrees"
2 |cel = 0
3 |try:
4 | fahr = float(temp)
5 | cel = (fahr - 32.0) * 5.0 / 9.0
6 |except:
7 | print("temp should be a number")
8 |print(cel)
Which line would cause the script to immediately stop because of an error?' answers: - '1' - '4' - '6' - '7' - 'None' solution: 2 ```