#日常 #学习 学校机房的Python版本太低了,在高版本的Python中加入了这么一个函数(sys模块)
# The following two functions were added in 3.11.0, 3.10.7, 3.9.14, and 3.8.14,
# as part of the response to CVE-2020-10735
def set_int_max_str_digits(maxdigits: int) -> None: ...

用于设置int转换为str类型时的最大长度,但是机房版本是Python 3.8.5,它没有这个😂
然后采用了一个折中的办法,是用decimal库
import decimal
c = decimal.Context(prec=4301)

这波机房老师背大锅(吃瓜
 
 
Back to Top