Pythonでは、単純に++文字を使用できますか?これを行う効率的な方法は何ですか?
www.website.com/term/#、www.website.com/term/a、www.website.com/term/b、www.website.com/term/c、wwwを含むURLを繰り返し処理したい.website.com / term / d ... www.website.com/term/z形式。
Pythonでは、単純に++文字を使用できますか?これを行う効率的な方法は何ですか?
www.website.com/term/#、www.website.com/term/a、www.website.com/term/b、www.website.com/term/c、wwwを含むURLを繰り返し処理したい.website.com / term / d ... www.website.com/term/z形式。
回答:
string.ascii_lowercase
小文字の便利な文字列であるを使用できます。
>>> from string import ascii_lowercase
>>> for c in ascii_lowercase:
... # append to your url
string.ascii_lowercase
提供'abcdefghijklmnopqrstuvwxyz'
man
、を介してASCIIテーブルを取得できますman ascii
。