我想定义一个函数(print_with_dashes
),以便在字符之间插入破折号时打印字符串x
。在此示例中,理想情况下会打印h-e-l-l-o
def print_with_dashes(x):
print (x)
print_with_dashes ('hello')
答案 0 :(得分:2)
您可以使用join功能。
def print_with_dashes(x):
print '-'.join(x)
演示:
>>> print_with_dashes('hello')
h-e-l-l-o
>>>