709 B
709 B
id, title, challengeType, videoId, bilibiliIds, dashedName
id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|
5e7b9f060b6c005b0e76f059 | その他の条件付き構造 | 11 | HdL82tAZR20 |
|
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