用python实现一个函数,函数功能为打印出两个字符串中对应位置相同的字母。
时间: 2023-05-28 15:02:14 浏览: 101
python 常见字符串与函数的用法详解
以下是Python代码实现:
```python
def print_matching_letters(str1, str2):
"""
打印出两个字符串中对应位置相同的字母
"""
for i in range(len(str1)):
if str1[i] == str2[i]:
print(str1[i], end=" ")
```
示例:
```python
>>> print_matching_letters("hello", "world")
l
>>> print_matching_letters("python", "python")
p y t h o n
>>> print_matching_letters("abcde", "vwxyz")
```
上述代码中,定义了一个名为 `print_matching_letters()` 的函数,该函数接受两个字符串作为参数,遍历这两个字符串的每个字符,如果两个字符串在相同位置上的字符相等,那么就打印这个字符。最后,返回一个列表,其中包含两个字符串对应位置相同的字符。
阅读全文