mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-21 16:01:27 -04:00
773 B
773 B
id, title, challengeType, videoId, bilibiliIds, dashedName
| id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5e7b9f0d0b6c005b0e76f075 | Мережа: використання urllib у Python | 11 | 7lFM1T_CxBs |
|
networking-using-urllib-in-python |
--question--
--text--
Як буде виглядати результат виконання даного коду?:
import urllib.request
fhand = urllib.request.urlopen('http://data.pr4e.org/romeo.txt')
for line in fhand:
print(line.decode().strip())
--answers--
Лише зміст «romeo.txt».
Верхній колонтитул і зміст «romeo.txt».
Верхній та нижній колонтитули, зміст «romeo.txt».
--video-solution--
1