题库 python等级考试 题目列表 下列程序段返回的值为“Hello!Python”。lst="Hell...
判断题

下列程序段返回的值为“Hello!Python”。
lst="Hello!Python"
def f():
    global lst
    lst="Hello!"
    return lst
f()
print(lst)

A.
正确
B.
错误
题目信息
核心函数 四级知识块 2021年3月 一般
-
正确率
0
评论
43
点击