下列选项中,不能正确输出'hello!_sA_sB_sC'的是()(选一项)
A.
print('hello{x}_s{y}_s{z}_s{r}'.format(x='!',y='A',z='B',r='C'))
B.
print( 'hello{}_s{}_s{}_s{}'.format('!','A','B','C'))
C.
print('hello{0}_s{2}_s{1}_s{3}'.format('!','A','B','C'))
D.
print( 'hello{3}_s{0}_s{1}_s{2}'.format('A','B','C','!'))