哪个表达式使用 pathlib 的跨平台路径语义连接路径组件?
pathlib
'usr' / 'bin' / 'spam'
('usr', 'bin', 'spam')
'usr' + '/' + 'bin' + '/' + 'spam'
Path('usr') / 'bin' / 'spam'