Python 中輸出一行字元數的方法:使用len() 函數計算字串長度使用字串方法count() 計算空字元的個數(即字串長度)
如何使用Python 輸出一行中的字元數
在Python 中,可以使用下列方法輸出一行中的字元數:
<code class="python">text = input("请输入一行文本:") text_length = len(text) print("字符数:", text_length)</code>
<code class="python">text = input("请输入一行文本:") num_chars = text.count("") print("字符数:", num_chars)</code>
範例:
<code class="python">text = "Hello World!" text_length = len(text) print("字符数:", text_length)</code>
輸出:
<code>字符数: 12</code>
以上是python怎麼輸出一行數的詳細內容。更多資訊請關注PHP中文網其他相關文章!