Files
freeCodeCamp/curriculum/challenges/portuguese/07-scientific-computing-with-python/python-for-everybody/more-conditional-structures.md

57 lines
619 B
Markdown
Raw Normal View History

---
id: 5e7b9f060b6c005b0e76f059
title: Mais estruturas condicionais
challengeType: 11
videoId: HdL82tAZR20
dashedName: more-conditional-structures
---
# --description--
Mais recursos:
\- [Exercício 1](https://www.youtube.com/watch?v=crLerB4ZxMI)
\- [Exercício 2](https://www.youtube.com/watch?v=KJN3-7HH6yk)
# --question--
## --text--
Dado o seguinte código:
```python
temp = "5 degrees"
cel = 0
fahr = float(temp)
cel = (fahr - 32.0) * 5.0 / 9.0
print(cel)
```
Qual linha/linhas devem ser incluídas em um bloco `try`?
## --answers--
1
---
3
---
3,4
---
4
---
Nenhuma
## --video-solution--
3