Python ではスペースは文字とみなされますか?
答えは Yes です。Python ではスペースも文字です。
ケース:
文字行を入力し、英語の文字、スペース、数字などの数を数えます。文字数。
#!/usr/bin/python # -*- coding: UTF-8 -*- import string s = raw_input('input a string:\n') letters = 0 space = 0 digit = 0 others = 0 for c in s: if c.isalpha(): letters += 1 elif c.isspace(): space += 1 elif c.isdigit(): digit += 1 else: others += 1 print 'char = %d,space = %d,digit = %d,others = %d' % (letters,space,digit,othePython
文字が数字、文字、またはスペースに属するかどうかを判断するメソッド:
Character c.isalpha()
Space c.isspace()
数字 c.isdigital()
以上がPython ではスペースが文字であることを示す例を示しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。