题解 | #取近似值#
取近似值
https://www.nowcoder.com/practice/3ab09737afb645cc82c35d56a5ce802a
# 分割成列表,用正则匹配 import re a = float(input()) b = str(a).split('.') # 使用正则表达匹配小数点后的第一位是否为:[5-9] c = re.match(r'^[5-9]', b[1] ) # 如果 c 为True,小数点前的数字+1 if c: print(int(b[0])+1) # 如果 c 为False,直接输出小数点前的数字 else: print(int(b[0]))