题目内容

执行python语句:s = "abcde"print( s.partition('c') )输出结果是

A. c
B. abcde
C. ('ab', 'c', 'de')
D. ('ab', 'de')

查看答案
更多问题

有python语句s = "销售科"e = 129.3要输出“销售科今年的业绩是129.30万元。”,应该用下面哪个语句?

A. print(s, "今年的业绩是", e, "万元。")
B. print(" {}今年的业绩是{}万元。".format(s,e))
C. print(" {}今年的业绩是{:.2f}万元。".format(s,e))
D. print( s+"今年的业绩是"+str(e)+"万元。" )

python语句print( ord('2') )的输出结果是

python语句s = "a,b,c,d"print( s.index('c') )的输出结果是

云南普洱茶有独特的陈香,滋味醇厚,具有显著的____功效,也曾获国际金奖。

A. 降血脂
B. 明目
C. 提神
D. 减肥

答案查题题库