题目内容

以下选项中,对于函数的定义错误的是()。

A. def func(a,b=2):
B. def func(*a,b):
C. def func(a,b):
D. def func(a,*b):

查看答案
更多问题

下面代码的输出结果是( )。s = "The python is a good language."print(s.split(' '))

A. Thepythonisagoodlanguage.
B. ['The', 'python', 'is', 'a', 'good', 'language.']
C. The python is a good language.
D. The, python, is, a, good, language

print('x=${:7.2f}'.format(123.5678)) 执行后的输出结果是( )。(选项中的□代表空格。)

A. x= □ 123.56
B. $□ 123.57
C. x=$□ 123.57
D. x=$□ 123.56

print('{:7.2f}{:2d}'.format(101/7,101%8)) 的运行结果是( )。(( □代表空格))

A. {:7.2f}{:2d}
B. .□□14.43 □5
C. □14.43 □□5
D. .□□101/7 □101%8

下面哪个选项不是程序流程图的基本元素( )。

A. 判断框
B. 输入/输出框
C. 处理框
D. 循环框

答案查题题库