定义一个统计用户姓名的函数,参数为first_name 和last_name,完整的名字且保证名字的的首字母都为大写,其余字母均为小写
时间: 2024-02-18 19:04:19 浏览: 246
num_of_first_name.zip_人数_统计姓氏
好的,以下是一个 Python 的函数实现:
```python
def count_name(first_name, last_name):
full_name = first_name + " " + last_name
name_count = len(full_name)
return name_count
```
这个函数将两个参数 first_name 和 last_name 合并成一个完整的名字,并统计名字长度,最后返回名字长度。注意,这个函数并没有实现对名字的大小写处理,因为题目已经保证名字的首字母为大写,其余字母为小写。
阅读全文