Python で 1 行の文字数を出力する方法: len() 関数を使用して文字列の長さを計算し、文字列メソッド count() を使用して null 文字 (つまり、 、文字列の長さ)
Python を使用して 1 行の文字数を出力する方法
Python では、次のメソッドを使用して 1 行の文字数を出力できます:
<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 中国語 Web サイトの他の関連記事を参照してください。