print( oct(–210)) 输出结果是( )。
A. '-0d322'
B. '-0o322'
C. '-0x322'
D. '-0b322’
查看答案
以下选项中,对于函数的定义错误的是()。
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