Pythonで文字列と浮動小数点数を出力する方法


  1. print文を使用する方法:
str_value = "Hello, World!"
float_value = 3.14
print(str_value)
print(float_value)
  1. f文字列を使用する方法:
str_value = "Hello, World!"
float_value = 3.14
print(f"The string is: {str_value}")
print(f"The float is: {float_value}")
  1. formatメソッドを使用する方法:
str_value = "Hello, World!"
float_value = 3.14
print("The string is: {}".format(str_value))
print("The float is: {}".format(float_value))
  1. %演算子を使用する方法:
str_value = "Hello, World!"
float_value = 3.14
print("The string is: %s" % str_value)
print("The float is: %f" % float_value)

これらの方法は、文字列と浮動小数点数を表示するための基本的な手法です。必要に応じて、フォーマットや精度をカスタマイズすることもできます。