单项选择题

( 第3章)变量sstr = '天使的翅膀带着我在尘世飞翔',执行下列选项,不能输出'翅膀'的是( )
A、print(sstr[3::2])
B、print(sstr[3:-8])
C、print(sstr[-10:-8])
D、print(sstr[3:5])