文字列を追加するにはどうすればよいですか
方法1 +
演算子を使用して Python 文字列を追加する
#!/usr/local/env python3
def Append_to_String():
myStr1 = "Welcome to"
myStr2 = "Linuxhint World!"
appStr = myStr1 + myStr2
print("The appended string is: " + appStr)
# The appended string is: Welcome toLinuxhint World!
Append_to_String()
方法2 %
演算子を使用して Python 文字列を追加する
#!/usr/local/env python3
def Append_to_String():
myStr1 = "Welcome to"
myStr2 = "Linuxhint World!"
# + で結合
appStr = myStr1 + myStr2
print("The appended string is: " + appStr)
# The appended string is: Welcome toLinuxhint World!
# % で結合
appStr = "%s %s" % (myStr1 , myStr2)
print("The appended string is: ", appStr)
# The appended string is: Welcome to Linuxhint World!
Append_to_String()
方法3 join()
メソッドを使用して Python 文字列を追加する
#!/usr/local/env python3
def Append_to_String():
myStr1 = "Welcome to"
myStr2 = "Linuxhint World!"
# + で結合
appStr = myStr1 + myStr2
print("The appended string is: " + appStr)
# The appended string is: Welcome toLinuxhint World!
# % で結合
appStr = "%s %s" % (myStr1 , myStr2)
print("The appended string is: ", appStr)
# The appended string is: Welcome to Linuxhint World!
# join()で結合
print("The appended string is: ", " ".join([myStr1, myStr2]))
# The appended string is: Welcome to Linuxhint World!
Append_to_String()
方法4 format()
メソッドを使用して Python 文字列を追加する
#!/usr/local/env python3
def Append_to_String():
myStr1 = "Welcome to"
myStr2 = "Linuxhint World!"
# + で結合
appStr = myStr1 + myStr2
print("The appended string is: " + appStr)
# The appended string is: Welcome toLinuxhint World!
# % で結合
appStr = "%s %s" % (myStr1 , myStr2)
print("The appended string is: ", appStr)
# The appended string is: Welcome to Linuxhint World!
# join()で結合
print("The appended string is: ", " ".join([myStr1, myStr2]))
# The appended string is: Welcome to Linuxhint World!
# format()で結合
appStr = "{} {}".format(myStr1 , myStr2)
print("The appended string is: ", appStr)
# The appended string is: Welcome to Linuxhint World!
Append_to_String()
Python で 2 つ以上の文字列を追加するには、複数の演算子とメソッド/関数を使用できます。
たとえば、「+」演算子、「%」演算子、「join()」および「format()」メソッドなどです。