Python 的字串格式化運算子%
問題:% 運算子應用於字串時的作用是什麼Python?
答案: % 運算子用於 Python 中的字串格式化。它允許您透過將值插入指定格式來建立格式化字串。
基本語法為:
format % values
格式說明符字串(format)包含佔位符(%s,%d)等),值元組(values)包含插入到這些佔位符中的值。
例如:
<code class="python">name = "John" age = 30 formatted_string = "Hi, I'm %s and I'm %d years old." % (name, age) print(formatted_string)</code>
輸出:
Hi, I'm John and I'm 30 years old.
在此範例中,%s 佔位符替換為name 變數的值,%d 佔位符替換為age 變數的值。
以上是Python 字串中的 % 運算子有什麼作用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!