题目内容

_____变量是在函数内部创建的。

A. 全局
B. 有名常量
C. 常量
D. 局部

查看答案
更多问题

程序文件中的所有函数都可访问_____。

A. 关键字
B. 局部变量
C. 全局变量
D. 字符串

执行以下程序后将显示什么:def main():print("The answer is", magic(5))def magic(num):answer = num + 2 * 10return answermain()

A. The answer is 70
B. The answer is 25
C. The answer is 100
D. 语句将引起语法错误

下面程序的运行结果是____。

A. 10 20
B. 20 20
C. 20 10
D. 10 10

下面程序的运行结果是_____。

答案查题题库