format命令是Python中用于格式化字符串的一個方法,它可以讓我們動態地插入變量值到字符串中。
使用format方法的一般語法如下:
formatted_string = "string with {} and {}".format(value1, value2)
在這個語法中,大括號{}
表示插入點,我們可以在大括號中指定要插入的變量。在format方法中,我們按照順序將要插入的變量作為參數傳遞給format方法。
我們也可以通過索引來指定要插入的變量的位置,例如:
formatted_string = "string with {1} and {0}".format(value1, value2)
在這個例子中,{1}
的位置插入了value1
的值,{0}
的位置插入了value2
的值。
另外,我們還可以使用鍵值對的形式來指定要插入的變量,例如:
formatted_string = "string with {name} and {age}".format(name="John", age=25)
在這個例子中,{name}
的位置插入了"John"
,{age}
的位置插入了25
。
format方法也支持格式化輸出,我們可以在大括號中使用冒號:
來指定格式化的方式。例如:
formatted_string = "The value is {:.2f}".format(3.14159)
在這個例子中,{:.2f}
表示要將插入的值格式化為浮點數,并保留2位小數。
除了format方法,Python 3.6及以上版本還引入了更方便的f-string語法,它以f
開頭,并使用花括號包含變量名。例如:
name = "John"
age = 25
formatted_string = f"string with {name} and {age}"
這樣就可以在字符串中直接使用變量的值,而不需要使用format方法。