01 2023 档案

摘要:1. 反转数组 阅读全文
posted @ 2023-01-29 11:22 拾荒人2022 阅读(28) 评论(0) 推荐(0)
摘要: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 阅读(53) 评论(0) 推荐(0)