帮我写两个可以直接在vscode中使用的python代码:第一个代码可以创建一个函数,接受参数,然后使用参数从网络上下载数据。第二个代码可以创建一个测试函数,可以调用第一个函数。
时间: 2023-03-08 17:19:20 浏览: 81
网络编程代码,可以直接用的很好的东西哦
第一个代码:
def download_data(url):
response = requests.get(url)
return response.content第二个代码:
def test_download_data():
data = download_data("https://example.com/data.txt")
assert data is not None
阅读全文