题目内容

题目:执行代码:>>>'num={{{x:.{d}f}}}'.format(x=1.234567,d=4)结果是:

A. num={{1.2346}}'
B. 'num={1.23456}'
C. 'num={1.2346}'
D. 'num=1.2346'

查看答案
更多问题

下面代码执后的结果是:x=2ifx>1:print(‘x>1’)else:print(‘x<=1’)print(“it’sover!”)

A. x>1it’sover!
B. x>1
C. x<=1
D. x<=1it’sover!

下面哪个函数返回中出现substr的第一个字母的标号,如果S中没有substr则返回-1:

A. S.rindex(substr,[start,[end]])
B. S.rfind(substr,[start,[end]])
C. S.index(substr,[start,[end]])
D. S.find(substr,[start,[end]])

下面哪一个不是python语言的运算符:

A. and
B. !=
C. not
D. <

要表示字符串s1="welcometoscitc"中的切片"scitc",以下哪个表达式是错误的:

A. s1[12:16]
B. s1[-5:]
C. s1[11:]
D. s1[11:16]

答案查题题库