1 |temp = "5 degrees"Which line would cause the script to immediately stop because of an error?' answers: - '1' - '4' - '6' - '7' - 'None' solution: 2 ```
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)