$ list = ['a', 'b', 'c', 'd', 'e']
list[0]
# 'A'
list[1]
# 'B'
list[2]
# 'C'
list[-1]
# 'E'
list[-2]
# 'D'
list = ['a', 'b', 'c', 'd', 'e']
list[3:]
# ['D', 'E']
list[:3]
# ['A', 'B', 'C']
list[::-1]
# ['E', 'D', 'C', 'B', 'A']
list[1:4:2]
# ['B', 'D']
list[4:1:-2]
# ['E', 'C']
{}
einschließen, wird es von der Menge oder dem Wörterbuch zurückgegeben, und wenn Sie es in ()
einschließen, wird es vom Generator zurückgegeben.list = ['a', 'b', 'c', 'd', 'e']
list2 = ['f', 'g', 'h', 'i', 'j']
[x.lower() for x in list]
# ['a', 'b', 'c', 'd', 'e']
[x.lower() for x in list if x!='B']
# ['a', 'c', 'd', 'e']
[str(i) + x for i, x in enumerate(list)]
# ['0A', '1B', '2C', '3D', '4E']
[x + y for x, y in zip(list, list2)]
# ['AF', 'BG', 'CH', 'DI', 'EJ']
{x.lower() for x in list}
# {'a', 'b', 'c', 'd', 'e'}※einstellen
{x:x.lower() for x in list}
# {'A': 'a', 'B': 'b', 'C': 'c', 'D': 'd', 'E': 'e'}※Wörterbuch
(x.lower() for x in list)
# <generator object <genexpr> at ?>※Generator
Dieser Artikel ist ein Migrationsartikel aus dem Blog "Technische Hinweise für Hausingenieure". Der vorherige Blog wird gelöscht.
Recommended Posts