在Python中,可以使用加號(+)操作符將一個字符或字符串添加到另一個字符串的末尾。例如,以下是添加字符 ‘a’ 到字符串 ‘hello’ 的示例代碼:
string = 'hello'
new_string = string + 'a'
print(new_string) # 輸出:helloa
此外,還可以使用字符串的 join()
方法將字符或字符串添加到另一個字符串的任意位置。例如,以下是將字符 ‘a’ 添加到字符串 ‘hello’ 的開頭的示例代碼:
string = 'hello'
new_string = 'a'.join(string)
print(new_string) # 輸出:ahaealao
需要注意的是,join()
方法的參數是一個可迭代對象,如字符串、列表或元組等。