mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-11 07:00:41 -04:00
679 B
679 B
id, title, challengeType, videoId, bilibiliIds, dashedName
| id | title | challengeType | videoId | bilibiliIds | dashedName | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5e7b9f0d0b6c005b0e76f075 | الشبكات: استخدام urllib في البايثون | 11 | 7lFM1T_CxBs |
|
networking-using-urllib-in-python |
--question--
--text--
What will the output of the following code be like?:
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--
الأول