07 2020 档案
摘要:import pandas as pd # 用来读取数据的一个包. from sklearn.linear_model import LinearRegression # 机器学习的包 用来做线性回归的-> 用咱们的数据帮我们求出一个函数 from sklearn.preprocessing imp
阅读全文
摘要:1:HTML: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>在线客服系统</title></head><body>{% comment %} 热键 {% endcomment %}<input type="t
阅读全文
摘要:import time def run(coroutine): try: print("11") coroutine.send(None) except StopIteration as e: print("e.value",e.value) return e.value async def asy
阅读全文