python教程python字符串拼接


在Python中,有几种方式可以进行字符串拼接:

  1. 使用"+"操作符:

    str1 = "Hello"
    str2 = "World"
    result = str1 + " " + str2
    print(result)
    # 输出: Hello World
    
  2. 使用逗号分隔的多个参数:

    str1 = "Hello"
    str2 = "World"
    result = str1, str2
    print(" ".join(result))
    # 输出: Hello World
    
  3. 使用字符串的join()方法:

    str1 = "Hello"
    str2 = "World"
    result = " ".join([str1, str2])
    print(result)
    # 输出: Hello World
    
  4. 使用格式化字符串:

    str1 = "Hello"
    str2 = "World"
    result = "{} {}".format(str1, str2)
    print(result)
    # 输出: Hello World
    

无论您选择哪种方式,都可以实现字符串的拼接操作。请根据您的需求和个人偏好选择适合的方法。


原文链接:codingdict.net