Python 编程: 字符串的拼接

Опубликовано: 20 Май 2026
на канале: CodeBilby
56
0

Python 编程: 字符串的拼接

1. 运算符:加 +
2. 运算符:乘 *
3. 字符串对象的方法 join(): 'separator'.join(iterable)

Python programming: String concatenation
1. use + operator
2. use * operator
3. use the string method join(): 'separator'.join(iterable)


#python #编程 #programming