我发现了 Python 中的//运算符,它在 Python 3 中用地板除法。
//
有没有用 ceil 划分的运算符?(我知道/Python 3 中进行浮点除法的运算符。)
/
没有与 ceil 相除的运算符。您需要import math并使用math.ceil
import math
math.ceil