这也能错???

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

mxyywjc @ 2024-07-24 07:52:10

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

by Maisie586_ @ 2024-07-24 08:24:21

@mxyywjc 需要特判尾部是0的情况(我当时也被这道红题卡了半天(求关


by mxyywjc @ 2024-07-24 08:33:29

@Maisie586_ 原来如此!qwq


by mxyywjc @ 2024-07-24 08:49:04

@Maisie586_ 还是不行

print(input()[::-1].lstrip('0').lstrip('.').lstrip('0'))

by openwld @ 2024-07-24 08:57:30

print(float(input()[::-1]))

|