Update 14.网络编程入门和网络应用开发.md

'time.time' imported but unused
pull/630/head
JK Huang 2020-07-06 16:00:00 -07:00 committed by GitHub
parent 5e2fda29be
commit 89ba0d68df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -87,7 +87,6 @@ pip install requests
如果使用PyCharm作为开发工具可以直接在代码中书写`import requests`然后通过代码修复功能来自动下载安装requests。
```Python
from time import time
from threading import Thread
import requests
@ -414,4 +413,4 @@ def main():
if __name__ == '__main__':
main()
```
```