Python期末考试题图文复习知识点试卷试题

2 下载量 136 浏览量 更新于2023-11-24 收藏 875KB DOC 举报
D._abc 3.以下哪个是Python中进行文件读写的函数( ) A.open() B.read() C.write() D.print() 4.以下哪个是Python中用来判断条件是否成立的语句 ( ) A.for B.if C.while D.def 5.以下哪个是Python中用来定义函数的关键字 ( ) A.for B.if C.while D.def 二、编程题 1.编写一个函数,接受一个字符串作为参数,返回该字符串中的大写字母个数。 2.编写一个函数,接受一个列表作为参数,返回该列表中的正整数个数。 3.编写一个函数,接受一个字符串作为参数,返回一个新字符串,新字符串中的字符按照原字符串的顺序进行反转。 4.编写一个函数,接受一个字典作为参数,返回该字典中的键值对个数。 5.编写一个函数,接受一个列表作为参数,返回该列表中的最大值和最小值。 答案: 一、选择题 1.A 2.D 3.A 4.B 5.D 二、编程题 1.```python def count_uppercase(string): count = 0 for char in string: if char.isupper(): count += 1 return count ``` 2.```python def count_positive_integers(lst): count = 0 for num in lst: if isinstance(num, int) and num > 0: count += 1 return count ``` 3.```python def reverse_string(string): return string[::-1] ``` 4.```python def count_key_value_pairs(dictionary): return len(dictionary) ``` 5.```python def find_max_min(lst): if len(lst) == 0: return None return max(lst), min(lst) ```