Home > Article > Backend Development > Detailed explanation of prefix and suffix operations 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
The above is the detailed content of Detailed explanation of prefix and suffix operations in python. For more information, please follow other related articles on the PHP Chinese website!