I prefer to spend the weekend at home ________ go to the movies.
A. rather
B. rather than
C. better than
D. to
查看答案
When you talk, you have to at least make yourself ________.
A. understand
B. to understand
C. understood
D. understanding
阅读下面的程序:def func():print(x)x=100func()执行上述语句后,输出的结果是()。
A. 0
B. 100
C. 程序出现异常
D. 程序编译失败
下列有关函数的说法中,正确的是()。
A. 函数的定义必须在程序的开头
B. 函数顶以后,其中的程序就可以自动执行
C. 函数顶以后需要调用才会执行
D. 函数体与关键字def必须左对齐
下列函数调用使用的参数传递方式是()。
A. 位置绑定
B. 关键字绑定
C. 变量类型绑定
D. 变量名称绑定