文章详情页
javascript - js代码转python
浏览:84日期:2022-06-28 09:37:27
问题描述
js代码如下
var e = a.charCodeAt(t).toString(16);这一行不明白
function encode_unicode_param(a) { for (var s = '', t = 0; t < a.length; t++) {var e = a.charCodeAt(t).toString(16);s += 2 == e.length ? 'n' + e: e } return s}
问题解答
回答1:python3 下:
def encode_unicode_param(s): results = [] for char in s:h = hex(ord(char))[2:]format_string = ’n{}’ if len(h) == 2 else ’{}’results.append(format_string.format(h)) return ’’.join(results)
相关文章:
1. javascript - 如何用最快的速度C#或Python开发一个桌面应用程序来访问我的网站?2. python - 请问这两个地方是为什么呢?3. python - 如何把152753这个字符串转变成时间格式15:27:534. html5 - video ios不能播放怎么办?5. objective-c - 从朋友圈跳到我的APP 如何实现?6. python - 关于beautifulsoup获取文档内容7. javascript - 有没有类似高铁管家的时间选择插件8. mysql - jdbc的问题9. mysql 存储过程 和 函数有什么用??10. mysql - 类似于之类的通知系统如何设计数据库
排行榜
