Python写法 测试无误 不知道为啥0分 求助

P5705 【深基2.例7】数字反转

Victory_a @ 2020-08-27 15:44:59

s = input()
print(s[::-1])

这是代码 但是0分 求助大佬


by andyli @ 2020-08-27 15:55:21

s = input().strip()

by Victory_a @ 2020-08-27 16:03:41

@andyli 那我这样写有啥问题嘞


by 103PA @ 2020-08-27 16:10:04

@a884322916 Python是整行读入,不写strip会RE


by 103PA @ 2020-08-27 16:10:33

或者WA


by hensier @ 2020-08-27 16:19:16

@a884322916 strip 用于去除 \n\r 这类的字符。


by Victory_a @ 2020-08-27 16:51:18

明白了 谢谢楼上各位了 感谢感谢


|