Loading... > py版本>=3.5 ## 常用类型 * int,long,float: 整型,长整形,浮点型 * bool,str: 布尔型,字符串类型 * List, Tuple, Dict, Set:列表,元组,字典, 集合 * Iterable,Iterator:可迭代类型,迭代器类型 * Generator:生成器类型 ## 示例 ```python def sendData(data: str = "") -> str: data = "data={0}".format(data) data = data.encode("utf-8") res = requests.post("http://localhost:8088/api/shop/cate/add/list" , headers={"Content-Type": "application/x-www-form-urlencoded"} , data=data) return res.text ``` 最后修改:2022 年 01 月 09 日 © 允许规范转载 打赏 赞赏作者 微信 赞 0 如果觉得我的文章对你有用,请随意赞赏