Heim > Artikel > Backend-Entwicklung > Was sind die grundlegenden Datentypen in Python?
Der Inhalt dieses Artikels besteht darin, die grundlegenden Datentypen von Python vorzustellen. Er hat einen gewissen Referenzwert. Ich hoffe, dass er für Sie hilfreich ist.
1. Alles in Python ist ein Objekt, und ein Objekt ist ein Ganzes, das Attribute und Methoden enthält.
2. Zusammensetzung des Datentyps: Identität (Speicheradresse, ihre eindeutige Kennung kann über die ID-Methode angezeigt werden); 3. Häufig verwendete Basisdatentypen
#转义字符 print('abcd\nef')#\为转义字符 print(r'abcd\nef')#字符串前面加r表示不转义 运行结果: abcd ef abcd\nef
6. Slice
a = "abcde" b = a[-1] #访问最后一个元素 c = a[0:4]#访问序列在0到4之间的元素不包括4 print(b) print(c) 运行结果: e abcd
7. String-Ersetzung
a = "abcd" print(a[0]) b = a.replace('d','def') print(b) print(a.find('d'))#字符串查询 运行结果: a abcdef 3
9. Dateioperationen: 'r'-read; 'a'-append (am Ende hinzugefügt)
#【1】直接相加 a = 'my name is xiaobin' b = 'tong' c = a + b print(c) 运行结果: my name is xiaobintong #【2】占位符 print('my name is %s xiaobin' % 'tong')#%s为字符串占位符,%d为数字占位符 print('my name is %s xiaobin,i\'m %s years old' % ('tong',24)) print('my name is {1}, i\'m {0} years old'.format('24','tongxiaobin'))#用format方法 运行结果: my name is tong xiaobin my name is tong xiaobin,i'm 24 years old my name is tongxiaobin, i'm 24 years old #【3】join a = '123' b = '456' c = '789' d = ''.join([a,b,c]) e = ';'.join([a,b,c]) print(d) print(e) 运行结果: 123456789 123;456;789
Zusammenfassung : Das Obige ist der gesamte Inhalt dieses Artikels. Ich hoffe, er wird für das Studium aller hilfreich sein. Weitere verwandte Video-Tutorials finden Sie unter:
Python-Video-Tutorial,
Python3-Video-Tutorial,
Bootstrap-Video-TutorialDas obige ist der detaillierte Inhalt vonWas sind die grundlegenden Datentypen in Python?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!