Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
说我想做类似的事情
9.9 % 13
正常的 python 模数会给我一个 9.9 的输出。有没有我可以导入的模块,而不是给我一个输出 6(或更一般地一个整数值)?
做就是了(99 mod 13 * inverse modulo ( 10, 13)) modulo 13
(99 mod 13 * inverse modulo ( 10, 13)) modulo 13
99 mod 13 = 8, inverse modulo (10,13) = 4
9.9 是唯一正确的答案。由于 9.9 小于 13,因此 9.9 是您请求的结果。要求一个为您提供整数输出的导入是不可能的,因为整数值是不可能的。无论您使用哪个模块。
TL;DR:没有这样的模块。