文章目录
- 题目1
- 代码
- 实验结果
- 题目2
- 代码
- 实验结果
- 题目3
- 代码
- 实验结果
- 题目4
- 代码
- 实验结果
- 题目总结
题目1
根据以下规范编写一个函数:
函数名称: | triple |
---|---|
输入参数: | 1个输入参数 |
数据类型 | 字符串 |
返回值: | 函数返回1个字符串值。该字符串由每个字符重复3次的句子构成。例如,如果句子是Uni,则函数返回字符串UUUnnniii |
如下图例子: |
代码
def triple(sentence):
#{# initialise the result string to emptyresult = ""# go through each letterfor i in range(0, len(sentence)):#{# get the ith letterletter = sentence[i]# add letter 3 times to the resultresult