Files
freeCodeCamp/curriculum/challenges/italian/07-scientific-computing-with-python/python-for-everybody/more-conditional-structures.md
Nicholas Carrigan (he/him) f25e3e69f8 feat: enable new langs (#42491)
Enable italian and portuguese
2021-06-15 13:19:18 +05:30

609 B

id, title, challengeType, videoId, dashedName
id title challengeType videoId dashedName
5e7b9f060b6c005b0e76f059 More Conditional Structures 11 HdL82tAZR20 more-conditional-structures

--description--

More resources:

- Exercise 1

- Exercise 2

--question--

--text--

Given the following code:

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

Which line/lines should be surrounded by try block?

--answers--

1


3


3,4


4


None

--video-solution--

3