搜索结果
查询Tags标签: latin,共有 5条记录-
python 解决cookie 传递中文 与 获取的问题
1. 设置的时候ret = render(request, login.html)ret.set_cookie("username", "张三".encode(utf-8).decode(latin-1))return ret2. 获取username = request.COOKIES.get("username")username = username.encode(latin-1).decode(utf-8) 简…
2022/6/2 1:20:30 人评论 次浏览 -
Latin Square题解(2019 ICPC Asia Danang Regional Contest)
https://vjudge.net/problem/Kattis-latinsquare 这题在说白了就是一道数独,hhhhhhhhh 训练赛的时候根本看不出是一道二分图,甚至根本没往这方面想,结束时看题解也是莫名奇妙(那篇题解没有讲解),到后面问了学长,学长提了一嘴。瞬间顿悟!!!! 首先,这个是一个二…
2021/10/18 23:11:41 人评论 次浏览 -
Latin Square题解(2019 ICPC Asia Danang Regional Contest)
https://vjudge.net/problem/Kattis-latinsquare 这题在说白了就是一道数独,hhhhhhhhh 训练赛的时候根本看不出是一道二分图,甚至根本没往这方面想,结束时看题解也是莫名奇妙(那篇题解没有讲解),到后面问了学长,学长提了一嘴。瞬间顿悟!!!! 首先,这个是一个二…
2021/10/18 23:11:41 人评论 次浏览 -
python3 中文乱码 UnicodeEncodeError: ‘latin-1‘ codec can‘t encode characters
报错 #!/usr/bin/python3 # -*- coding: utf-8 -*-str_1 = 这是中文 # str print(str_1)报错: UnicodeEncodeError: ‘latin-1’ codec can’t encode characters in position 0-3: ordinal not in range(256) 解决方法 str_2 = str_1.encode(“utf-8”).decode(“latin…
2021/7/11 20:08:09 人评论 次浏览 -
python3 中文乱码 UnicodeEncodeError: ‘latin-1‘ codec can‘t encode characters
报错 #!/usr/bin/python3 # -*- coding: utf-8 -*-str_1 = 这是中文 # str print(str_1)报错: UnicodeEncodeError: ‘latin-1’ codec can’t encode characters in position 0-3: ordinal not in range(256) 解决方法 str_2 = str_1.encode(“utf-8”).decode(“latin…
2021/7/11 20:08:09 人评论 次浏览