以下代码输出结果为()

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

时间:2023-09-07 13:45:02

相似题目