Heim > Artikel > Backend-Entwicklung > Detaillierte Erläuterung der Präfix- und Suffixoperationen in Python
import os path = 'first_directory/second_directory/file.txt'print os.path.splitext(path)[1]print type(os.path.splitext(path)[1])
.txt <type 'str'>
path = 'first_directory/second_directory/file.txt'print path.startswith('fir')
True
path = 'first_directory/second_directory/file.txt'print path.endswith('.txt')
True
import os path = 'first_directory/second_directory/file.txt'print os.path.splitext(path)print os.path.splitext(path)[1]print type(os.path.splitext(path)[1])printprint path.startswith('fir')print path.startswith('aaa')print type(path.startswith('fir'))printprint path.endswith('.txt')print path.endswith('.aaa')print type(path.endswith('.txt'))
('first_directory/second_directory/file', '.txt') .txt <type 'str'> True FalseTrue False
Das obige ist der detaillierte Inhalt vonDetaillierte Erläuterung der Präfix- und Suffixoperationen in Python. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!