06 2022 档案

摘要:正则匹配邮箱格式 匹配指定后缀邮箱格式 import re email = input("Enter your email:\n") result = re.match(r".*@(163|qq|126|sohu)\.com",email) print(result) if result: prin 阅读全文
posted @ 2022-06-20 09:52 hanwang~ 阅读(28) 评论(0) 推荐(0)
摘要:自定义滚动条样式 点击查看代码 .container { max-height: 200px; overflow-y: scroll; } .container::-webkit-scrollbar { width: 0.5em; background-color: white; } .contai 阅读全文
posted @ 2022-06-13 15:36 hanwang~ 阅读(25) 评论(0) 推荐(0)
摘要:##rust入门 安装rust(win) 下载安装包 https://www.rust-lang.org/tools/install 查看版本 rustc --version cargo -v 其他 https://blog.csdn.net/yao_hou/article/details/1242 阅读全文
posted @ 2022-06-02 17:14 hanwang~ 阅读(216) 评论(0) 推荐(0)
摘要:request的结构获取 class Upload(Resource): def post(self): print(curPath) print(request.files['file'].__dict__) print(' ') print(request.files.get('file')._ 阅读全文
posted @ 2022-06-01 17:09 hanwang~ 阅读(56) 评论(0) 推荐(0)