以下哪个字符串表达式是正确的。
A. ’this'saapple!'
B. "this'saapple!'''
C. "this'saapple!"
D. "this'saapple!'
以下哪条命令的执行结果为3.14
A. print('{:.2f}'.format(3.1415926))
B. print('{:f.2}'.format(3.1415926))
C. print('{f:.2}'.format(3.1415926))
D. print('{.2:f}'.format(3.1415926))
以下哪一个表达式不能取出字符串s1='file1.txt'中的字符'.':
A. s1[5:6]
B. s1[6:7]
C. s1[-4:-3]
D. s1[s1.find('.'):s1.find('.')+1]
以下哪一个不是python语言的算术运算符
A. ×
B. /
C. //
D. %