1. ホーム
  2. python

[解決済み] Python: a-zの範囲を表示するには?

2022-05-13 11:09:41

質問

1. a-nを印刷します。 a b c d e f g h i j k l m n

2. a-nで1秒ごと。 a c e g i k m

3. urls{hello.com/, hej.com/, ..., hallo.com/}のインデックスにa-nを追加する。 hello.com/a hej.com/b ... hallo.com/n

どのように解決するのですか?

>>> import string
>>> string.ascii_lowercase[:14]
'abcdefghijklmn'
>>> string.ascii_lowercase[:14:2]
'acegikm'

URLを指定するには、次のようなものを使用します。

[i + j for i, j in zip(list_of_urls, string.ascii_lowercase[:14])]