执行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)+"万元。" )