以下程序的输出结果是:s1,s2 = "Mom", " Dad"print("{} loves {}" . format( s2,s1)
A. Dad loves Mom
B. Mom loves Dad
C. s1 loves s2
D. s2 loves s1
查看答案
以下程序的输出结果是:t=" the World is so big,I want to see "s = t[20:21] + ' love '+t[:10]print(s)
A. I love the
B. I love World
C. I love the World
D. love the World
以下程序的输出结果是:a, b,c= 'I ',chr(64) , " you"s=a+b+cprint(s)
A.I @ you
B.l you
C. 14 you
D. l chr(64) you
以下程序的输出结果是:s ="LOVES"print("|:*^13| ".format(s))
A. LOVES
B. * * * * * * * * LOVES
C. LOVES * * * * * * * *
D. * * * * LOVES* * * *
在Python中,关于数据取值的描述错误的是:
A. 整数的书写格式支持十讲制、二讲制、八进制和十六进制
B. 如果想知道参数的数据类型那么可以用type()函数获得
C. 整数浮点数数和布尔值都是 Python的基本数据类型
D. 浮点数具带有小数的数字,它存在范围的限制,如果计算结果超出上限和下限,则不会报错,但会有warning的警告