实例
以下实例展示了join()的使用方法:
实例(Python 2.0+)
!/usr/bin/python
-- coding: UTF-8 --
str = "-";
seq = ("a", "b", "c"); # 字符串序列
print str.join( seq );
以上实例输出结果如下:
a-b-c
实例
以下实例展示了join()的使用方法:
实例(Python 2.0+)
str = "-";
seq = ("a", "b", "c"); # 字符串序列
print str.join( seq );
以上实例输出结果如下:
a-b-c
本文标题:join()的使用方法:
本文链接:https://www.haomeiwen.com/subject/rlfewctx.html
网友评论