1. พิมพ์: abcdefghijklmn
2. ทุกวินาทีใน: acegikm
3. ต่อท้ายดัชนีของ URL {hello.com/, hej.com/, ... , hallo.com/}: hello.com/a hej.com/b ... hallo.com/n
range
และchr()
และอื่น ๆ ที่ทำรายการพร้อมในstring
ซึ่งหลาย ๆ คนจะไม่คิดว่า
1. พิมพ์: abcdefghijklmn
2. ทุกวินาทีใน: acegikm
3. ต่อท้ายดัชนีของ URL {hello.com/, hej.com/, ... , hallo.com/}: hello.com/a hej.com/b ... hallo.com/n
range
และchr()
และอื่น ๆ ที่ทำรายการพร้อมในstring
ซึ่งหลาย ๆ คนจะไม่คิดว่า
คำตอบ:
>>> 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])]
str.lowercase
ขึ้นอยู่กับสถานที่ตั้งดังนั้นจึงไม่ใช่ทางเลือกที่ดีที่สุดในตอนแรก ฉันแทนที่ในคำตอบของฉัน
สมมติว่านี่คือการบ้าน ;-) - ไม่จำเป็นต้องเรียกไลบรารีและอื่น ๆ - อาจคาดหวังให้คุณใช้ range () กับ chr / ord เช่น:
for i in range(ord('a'), ord('n')+1):
print chr(i),
สำหรับส่วนที่เหลือเพียงแค่เล่นอีกเล็กน้อยกับ range ()
คำแนะนำ:
import string
print string.ascii_lowercase
และ
for i in xrange(0, 10, 2):
print i
และ
"hello{0}, world!".format('z')
for one in range(97,110):
print chr(one)
small_letters = map(chr, range(ord('a'), ord('z')+1))
big_letters = map(chr, range(ord('A'), ord('Z')+1))
digits = map(chr, range(ord('0'), ord('9')+1))
หรือ
import string
string.letters
string.uppercase
string.digits
โซลูชันนี้ใช้ไฟล์ ตาราง ASCII ord
รับค่า ascii จากอักขระและchr
ในทางกลับกัน
>>> small_letters = map(chr, range(ord('a'), ord('z')+1))
>>> an = small_letters[0:(ord('n')-ord('a')+1)]
>>> print(" ".join(an))
a b c d e f g h i j k l m n
>>> print(" ".join(small_letters[0::2]))
a c e g i k m o q s u w y
>>> s = small_letters[0:(ord('n')-ord('a')+1):2]
>>> print(" ".join(s))
a c e g i k m
>>> urls = ["hello.com/", "hej.com/", "hallo.com/"]
>>> print([x + y for x, y in zip(urls, an)])
['hello.com/a', 'hej.com/b', 'hallo.com/c']
import string
print list(string.ascii_lowercase)
# ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
tuple(string.ascii_lowercase)
import string
print list(string.ascii_lowercase)
# ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
และ
for c in list(string.ascii_lowercase)[:5]:
...operation with the first 5 characters
myList = [chr(chNum) for chNum in list(range(ord('a'),ord('z')+1))]
print(myList)
เอาต์พุต
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
#1)
print " ".join(map(chr, range(ord('a'),ord('n')+1)))
#2)
print " ".join(map(chr, range(ord('a'),ord('n')+1,2)))
#3)
urls = ["hello.com/", "hej.com/", "hallo.com/"]
an = map(chr, range(ord('a'),ord('n')+1))
print [ x + y for x,y in zip(urls, an)]
คำตอบสำหรับคำถามนี้ง่ายมากเพียงแค่สร้างรายการชื่อ ABC ดังนี้:
ABC = ['abcdefghijklmnopqrstuvwxyz']
และเมื่อใดก็ตามที่คุณต้องการอ้างถึงให้ทำดังนี้
print ABC[0:9] #prints abcdefghij
print ABC #prints abcdefghijklmnopqrstuvwxyz
for x in range(0,25):
if x % 2 == 0:
print ABC[x] #prints acegikmoqsuwy (all odd numbered letters)
ลองทำเช่นนี้เพื่อทำลายอุปกรณ์ของคุณ: D
##Try this and call it AlphabetSoup.py:
ABC = ['abcdefghijklmnopqrstuvwxyz']
try:
while True:
for a in ABC:
for b in ABC:
for c in ABC:
for d in ABC:
for e in ABC:
for f in ABC:
print a, b, c, d, e, f, ' ',
except KeyboardInterrupt:
pass
ลอง:
strng = ""
for i in range(97,123):
strng = strng + chr(i)
print(strng)
นี่เป็นคำถามที่ 2 ของคุณ: string.lowercase[ord('a')-97:ord('n')-97:2]
เพราะ97==ord('a')
- ถ้าคุณต้องการเรียนรู้เล็กน้อยคุณควรหาส่วนที่เหลือด้วยตัวคุณเอง ;-)
ฉันหวังว่านี่จะช่วยได้:
import string
alphas = list(string.ascii_letters[:26])
for chr in alphas:
print(chr)
เกี่ยวกับคำตอบของ gnibbler
ฟังก์ชั่นซิปคำอธิบายแบบเต็มการa list of tuples, where the i-th tuple contains the i-th element from each of the argument sequences or iterables.
[...]
สร้างการส่งคืนเรียกว่ารายการความเข้าใจคุณสมบัติที่ยอดเยี่ยมมาก!
list(string.ascii_lowercase)
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
import string
pass
aalist = list(string.ascii_lowercase)
aaurls = ['alpha.com','bravo.com','chrly.com','delta.com',]
iilen = aaurls.__len__()
pass
ans01 = "".join( (aalist[0:14]) )
ans02 = "".join( (aalist[0:14:2]) )
ans03 = "".join( "{vurl}/{vl}\n".format(vl=vjj[1],vurl=aaurls[vjj[0] % iilen]) for vjj in enumerate(aalist[0:14]) )
pass
print(ans01)
print(ans02)
print(ans03)
pass
abcdefghijklmn
acegikm
alpha.com/a
bravo.com/b
chrly.com/c
delta.com/d
alpha.com/e
bravo.com/f
chrly.com/g
delta.com/h
alpha.com/i
bravo.com/j
chrly.com/k
delta.com/l
alpha.com/m
bravo.com/n
enumerate
ร่วมกับความเข้าใจในรายการและรูปแบบ str.