14
は、あなたがdigits
とwhitespace
であるのに対し、これは、定義されていないPython 2の文字のPython 3の同値は何ですか?あなたは</p> <pre><code>>>> from string import * >>> letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' </code></pre> <p>しかし、Pythonの3に入るのPython 2では
>>> from string import *
>>> letters
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'letters' is not defined
を取得します。
letters
とPython 3の文字列モジュールの同値はなんですか?
ありがとうございました! – CosmicRabbitMediaInc
@CosmicRabbitMediaInc:あなたは英語のテキストに遭遇した場合でも動作することに注意してください。 –
私にとっては、文字列部分を削除しなければなりませんでした。単に 'ascii_letters'を使って私の場合python 3.6で動作します –