下面代码的输出结果是( )。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('{: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