问题详情
以下代码输出结果为()
s = "6.00 is 6.0001 and 6.0002"
new_str = ""
new_str += s[-1]
new_str += s[0]
new_str += s[4::30]
new_str += s[13:10:-1]
print(new_str)
A、260000
B、26100
C、26 100
D、6.00 is 6.0001 and 6.0002
请帮忙给出正确答案和分析,谢谢!