2022年2月16日
摘要: # 使用join"""有个字符串"abc"如何把字符串单个字符串联起来得到字符串 "a_b_c""""b = "abc"print("_".join(b))print(type(b))"""有个列表 ["hello", "world", "你好"]如何把列表里面的字符串联起来,得到字符串 "hell 阅读全文
posted @ 2022-02-16 21:51 peijiao 阅读(456) 评论(0) 推荐(0)