ray.rllib.common.SupportedFileType.join#

SupportedFileType.join(iterable, /)#

连接任意数量的字符串。

调用方法的字符串被插入到每个给定的字符串之间。结果作为新字符串返回。

示例: ‘.’.join([‘ab’, ‘pq’, ‘rs’]) -> ‘ab.pq.rs’