資源簡介
Python程序設計-董付國(第二版)教學課件、代碼、課后習題答案
代碼片段和文件信息
import?socket
import?sys
#服務端主機IP地址和端口號
HOST?=?‘10.2.1.2‘
PORT?=?50007
s?=?socket.socket(socket.AF_INET?socket.SOCK_STREAM)
try:
????#連接服務器
????s.connect((HOST?PORT))
except?Exception?as?e:
????print(‘Server?not?found?or?not?open‘)
????sys.exit()
while?True:
????c?=?input(‘Input?the?content?you?want?to?send:‘)
????#發送數據
????s.sendall(c.encode())
????#從服務端接收數據
????data?=?s.recv(1024)
????data?=?data.decode()
????print(‘Received:‘?data)
????if?c.lower()?==?‘bye‘:
????????break
#關閉連接
s.close()
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-05-25?13:40??Python程序設計-董付國(第二版)\
?????文件???????34657??2016-05-09?22:54??Python程序設計-董付國(第二版)\樣書.JPG
?????目錄???????????0??2017-04-22?18:02??Python程序設計-董付國(第二版)\課件1\
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\
?????文件?????????589??2016-11-25?08:23??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\chatClient.py
?????文件????????1337??2016-11-25?08:41??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\chatServer.py
?????文件?????????534??2015-12-24?09:31??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\client.py
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\
?????文件???????????0??2016-04-28?15:02??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\__init__.py
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\__pycache__\
?????文件?????????152??2016-12-31?10:50??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\__pycache__\__init__.cpython-35.pyc
?????文件?????????289??2016-12-31?10:50??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\__pycache__\settings.cpython-35.pyc
?????文件?????????296??2016-12-31?10:09??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\items.py
?????文件?????????297??2016-12-31?10:09??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\pipelines.py
?????文件????????3216??2016-12-31?10:09??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\settings.py
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\
?????文件?????????161??2016-04-28?15:02??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\__init__.py
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\__pycache__\
?????文件?????????160??2016-12-31?10:50??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\__pycache__\__init__.cpython-35.pyc
?????文件????????1438??2016-12-31?16:56??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\__pycache__\spiderYichangGuishi.cpython-35.pyc
?????文件????????1409??2016-12-31?16:55??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\crawYichangGuishi\spiders\spiderYichangGuishi.py
?????文件?????3826564??2016-12-31?16:59??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\result.txt
?????文件?????????278??2016-12-31?10:09??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\crawYichangGuishi\scrapy.cfg
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\
?????文件????????3072??2016-05-07?19:56??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\db.sqlite3
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\django_IsPrime\
?????文件???????????0??2016-05-07?19:46??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\django_IsPrime\__init__.py
?????目錄???????????0??2017-02-21?10:57??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\django_IsPrime\__pycache__\
?????文件?????????144??2016-05-07?19:56??Python程序設計-董付國(第二版)\課件1\第10章?網絡程序設計\code\django_IsPrime\django_IsPrime\__pycache__\__init__.cpython-35.pyc
............此處省略370個文件信息
評論
共有 條評論