Dieser Artikel stellt hauptsächlich Python allgemeine Tipps vor. Die Beispiele fassen Pythons Bedienfähigkeiten in Bezug auf Wörterbuch, String, Zufallszahlen usw. zusammen. Es ist sehr einfach und praktisch can Als Referenz:
Die Beispiele in diesem Artikel fassen allgemeine Tipps in Python zusammen. Teilen Sie es als Referenz mit allen. Die spezifische Analyse lautet wie folgt:
1. Holen Sie sich die lokale Mac-Adresse:
import uuid mac = uuid.uuid1().hex[-12:] print(mac)
Laufendes Ergebnis: e0cb4e077585
2 . Verwendung von del
a = ['b','c','d'] del a[0] print(a)# 输出 ['c', 'd']
a = ['b','c','d'] del a[0:2] # 删除从第1个元素开始,到第2个元素 print(a)# 输出 ['d']
a = ['b','c','d'] del a print(a) # 此时a未定义
3 . Verwendung von Join
a = ['c','d'] a.reverse() a = ['d','c'] b = ','.join(a) print(b) # 输出 d,c
4. Verwendung von Zufallszahlen:
import random x = random.randint(1,100) y = random.choice( 'abcd') print(x) print(y)
Das laufende Ergebnis ist :
68
b
5. Verwendung von dict:
a=[1,2,3] b=['a','b','c'] c=dict(zip(a,b)) print(c) # 输出: {1:'a',2:'b',3:'c'}
6 >
a='1-2-3-4' b=map(int,a.split('-')) print(b) # 输出: [1,2,3,4]
[].pop( index ) = value
[].
count( x ) = Anzahl von x in der Liste{} mit
{}.pop( key ) = value
{}.get( key ) = value oder {}.get( key ,0 ) Legen Sie den Standardwert fest
a = str.decode( 'utf-8' ) b = str.encode( 'utf-8' ) str.isdigit() # 是否数值 str1 = 'abc%s'%str2
für i ,j in d:
import string x= string.ascii_lowercase # print(x) # 输出: abcdefghijklmnopqrstuvwxyz d = enumerate( x ) c = list( d ) print(c)
i = 0,1,2,...,25
j = 'a','b'...,'z'Das obige ist der detaillierte Inhalt vonEine Zusammenfassung sehr praktischer Python-Tipps. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!