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.
在 Python 5//2 中是楼层划分。
在朱莉娅:
5//2
退货
如何在 Julia 中进行楼层划分?
尝试:
julia> 5 ÷ 2 2
÷可以通过键入\div并按 Tab来输入字符。
÷
\div
另一方面,运算符//用于创建有理数。
//
你也可以试试:
julia> floor(5/2) 2.0 julia> floor(Int64, 5/2) 2
在 julia> 提示符下输入 '?' 然后是“地板()”,然后是“?div()' 查看已经提到的内容。