A. ’this'saapple!' B. "this'saapple!''' C. "this'saapple!" D. "this'saapple!'
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))
A. s1[5:6] B. s1[6:7] C. s1[-4:-3] D. s1[s1.find('.'):s1.find('.')+1]
A. × B. / C. // D. %
A. 字符串 B. 元组 C. 列表 D. 字典