Python的format()函式

Python的format()函式是一個非常有用的函式,它可以讓你將字串格式化,以便更容易閱讀。它可以讓你指定字串的格式,並將變數插入到字串中。

format()函式的基本語法如下:

format(value[, format_spec])

其中,value是要格式化的值,format_spec是指定格式的字串。

範例

以下是一個簡單的範例,展示如何使用format()函式:

name = 'John'
print('Hello, {}'.format(name))

輸出結果:

Hello, John

在這個範例中,我們將變數name插入到字串中,並使用format()函式將它格式化。

更多範例

以下是一個更複雜的範例,展示如何使用format()函式:

name = 'John'
age = 20
print('{0} is {1} years old'.format(name, age))

輸出結果:

John is 20 years old

在這個範例中,我們將變數nameage插入到字串中,並使用format()函式將它們格式化。

總結

Python的format()函式是一個非常有用的函式,它可以讓你將字串格式化,以便更容易閱讀。它可以讓你指定字串的格式,並將變數插入到字串中。

Categorized in:

Tagged in: