摘要: 1. 获取字符串长度 test = 'hello world' 1) python res = len(test) 2) js res = test.length 2. 字符串反转 test = 'hello world' 1) python res = test[::-1] 2) js res = 阅读全文
posted @ 2023-01-17 15:22 拾荒人2022 阅读(45) 评论(0) 推荐(0)