Files
freeCodeCamp/curriculum/challenges/ukrainian/23-python-for-everybody/python-for-everybody/more-conditional-structures.md
freeCodeCamp's Camper Bot cc87f4455d chore(i18n,learn): processed translations (#54077)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
2024-03-25 16:31:40 +00:00

923 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f060b6c005b0e76f059 Додаткові умовні структури 11 HdL82tAZR20
aid bvid cid
631930118 BV1Nb4y1r7z2 376337449
more-conditional-structures

--description--

Додаткові ресурси:

- Вправа 1

- Вправа 2

--question--

--text--

Вам надано наведений нижче код:

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

Який рядок/рядки мають бути всередині блоку try?

--answers--

1


3


3,4


4


Жоден

--video-solution--

3