小编典典

Python:如何打印范围az?

python

1.打印: abcdefghijklmn

2.每秒: acegikm

3.将url索引附加到{ hello.com/,hej.com/,...,hallo.com/}:hello.com/a hej.com/b …
hallo.com/n


阅读 151

收藏
2021-01-20

共1个答案

小编典典

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

要执行网址,您可以使用类似以下内容的网址

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