# 使用join
"""
有个字符串"abc"
如何把字符串单个字符串联起来
得到字符串 "a_b_c"
"""
b = "abc"
print("_".join(b))
print(type(b))
"""
有个列表 ["hello", "world", "你好"]
如何把列表里面的字符串联起来,
得到字符串 "hello_world_你好"
"""
a = ["hello", "world", "你好"]
print("_".join(a))
print(type(a))
相关文章
- 09-30python基础练习题(题目 有序列表插入元素)
- 09-30Python之基础练习题
- 09-30洛谷P1098——Python做法,字符串分割,大小写转换,ascall码,倒序处理,列表转化字符串,字符串拼接
- 09-30第三节 Python基础之数据类型(列表,元组,字典)
- 09-30python基础三之字符串常见操作
- 09-30Python 基础 字符串拼接 + if while for循环
- 09-30python基础数据类型之字符串操作
- 09-30Python新手学习基础之数据结构-列表1
- 09-30python基础_基本数据类型之String(字符串)
- 09-30Python基础 - 05字符串列表